history
history
コマンドでコマンドの実行履歴を表示する。
$ history
101 bundle exec rake db:migrate
102 git branch master
103 pwd
104 bundle install
105 bundle exec rake db:migrate
106 bundle exec rails s
107 mysql.server stop
108 mysql.server start
109 bundle exec rails s
110 mysql.server stop
指定の履歴番号を実行する
例えば履歴番号 101
の bundle exec rake db:migrate
を実行したい場合は下記の通り。
$ !101