7
7

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

linux > 前に入力したコマンドの再利用 > history / ctrl+r

Last updated at Posted at 2015-01-15

CentOS6.5とbashにて動作確認。

(長ったらしい)コマンドを何度も実行したい時、スクリプトを作るまでもない場合は、historyを使えば便利。

historyとすると以下のように過去のコマンド履歴が表示される。

1041 pwd
1042 ls 
1043 echo "This is the test"
1044 history

ここでecho ...のコマンドを再実行したい時は!1043とすると実行できる。

あるいは、ctrl+rと入力してからechoなどを入力すると、最後に実行した"echo"を先頭に含むコマンド(例では1043のもの)が表示され、それを実行できる。こちらの方は、![番号]と比べて、コマンド内容を書き換えできる点で利点がある。

7
7
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
7
7

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?