當我在bash中輸入一個長命令後,我決定不出於某種原因執行它。 但我只是想在沒有清除命令的情況下開始一個新行。該命令仍在屏幕上?來人幫幫我?返回並添加一個新行而不執行bash中的當前命令?
#I typed as below:
$>find -name "filepattern" -exec grep "hello" {} \;
#I wanted as below without executing the 'find' command.
$>find -name "filepattern" -exec grep "hello" {} \;
$>
這將清除命令 –
@cebewee這是您使用的版本不以'在OS X上的bash 3.2'? – simont
它適合我!謝謝! –