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