在 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" {} \;
$>