bash的設置
運行 set|grep HISTFILE,默認的歷史操做記錄文件是 .bash_history
在.bash_profile 添加shell
HISTFILE=/root/test
export HISTFILE
bash
或者 添加 export HISTSIZE=9999999app
從新登陸,會發現已經把記錄寫道/root/test 了。
其餘設置都寫在.bashrc可實現:
# 忽略重複的命令
export HISTCONTROL=ignoredups
# 忽略由冒號分割的這些命令
export HISTIGNORE="[ ]*:&:bg:fg:exit"
# 設置保存歷史命令的文件大小
export HISTFILESIZE=1000000000
# 保存歷史命令條數
export HISTSIZE=1000000
因爲bash的history文件默認是覆蓋,若是存在多個終端,最後退出的會覆蓋之前歷史記錄,改成追加形式:
shopt -s histappend
實時寫入,而不是退出shell才寫入的方法:
PROMPT_COMMAND="history -a; $PROMPT_COMMAND"this
使用 HISTTIMEFORMAT 顯示時間戳spa
當你從命令行執行 history 命令後,一般只會顯示已執行命令的序號和命令自己。若是你想要查看命令歷史的時間戳,那麼能夠執行:命令行
# export HISTTIMEFORMAT='%F %T ' # history | more 1 2008-08-05 19:02:39 service network restart 2 2008-08-05 19:02:39 exit 3 2008-08-05 19:02:39 id 4 2008-08-05 19:02:39 cat /etc/redhat-release
注意:這個功能只能用在當 HISTTIMEFORMAT 這個環境變量被設置以後,以後的那些新執行的 bash 命令纔會被打上正確的時間戳。在此以前的全部命令,都將會顯示成設置 HISTTIMEFORMAT 變量的時間。[感謝 NightOwl 讀者補充]rest
使用 Ctrl+R 搜索歷史code
Ctrl+R 是我常常使用的一個快捷鍵。此快捷鍵讓你對命令歷史進行搜索,對於想要重複執行某個命令的時候很是有用。當找到命令後,一般再按回車鍵就能夠執行該命令。若是想對找到的命令進行調整後再執行,則能夠按一下左或右方向鍵。three
# [Press Ctrl+R from the command prompt, which will display the reverse-i-search prompt] (reverse-i-search)`red‘: cat /etc/redhat-release [Note: Press enter when you see your command, which will execute the command from the history] # cat /etc/redhat-release Fedora release 9 (Sulphur)
快速重複執行上一條命令it
有 4 種方法能夠重複執行上一條命令:
從命令歷史中執行一個指定的命令
在下面的例子中,若是你想重複執行第 4 條命令,那麼能夠執行 !4:
# history | more 1 service network restart 2 exit 3 id 4 cat /etc/redhat-release # !4 cat /etc/redhat-release Fedora release 9 (Sulphur)
經過指定關鍵字來執行之前的命令
在下面的例子,輸入 !ps 並回車,將執行以 ps 打頭的命令:
# !ps ps aux | grep yp root 16947 0.0 0.1 36516 1264 ? Sl 13:10 0:00 ypbind root 17503 0.0 0.0 4124 740 pts/0 S+ 19:19 0:00 grep yp
使用 HISTSIZE 控制歷史命令記錄的總行數
將下面兩行內容追加到 .bash_profile 文件並從新登陸 bash shell,命令歷史的記錄數將變成 450 條:
# vi ~/.bash_profile HISTSIZE=450 HISTFILESIZE=450
使用 HISTFILE 更改歷史文件名稱
默認狀況下,命令歷史存儲在 ~/.bashhistory 文件中。添加下列內容到 .bashprofile 文件並從新登陸 bash shell,將使用 .commandline_warrior 來存儲命令歷史:
# vi ~/.bash_profile HISTFILE=/root/.commandline_warrior
使用 HISTCONTROL 從命令歷史中剔除連續重複的條目
在下面的例子中,pwd 命令被連續執行了三次。執行 history 後你會看到三條重複的條目。要剔除這些重複的條目,你能夠將 HISTCONTROL 設置爲 ignoredups:
# pwd # pwd # pwd # history | tail -4 44 pwd 45 pwd 46 pwd [Note that there are three pwd commands in history, after executing pwd 3 times as shown above] 47 history | tail -4 # export HISTCONTROL=ignoredups # pwd # pwd # pwd # history | tail -3 56 export HISTCONTROL=ignoredups 57 pwd [Note that there is only one pwd command in the history, even after executing pwd 3 times as shown above] 58 history | tail -4
使用 HISTCONTROL 清除整個命令歷史中的重複條目
上例中的 ignoredups 只能剔除連續的重複條目。要清除整個命令歷史中的重複條目,能夠將 HISTCONTROL 設置成 erasedups:
# export HISTCONTROL=erasedups # pwd # service httpd stop # history | tail -3 38 pwd 39 service httpd stop 40 history | tail -3 # ls -ltr # service httpd stop # history | tail -6 35 export HISTCONTROL=erasedups 36 pwd 37 history | tail -3 38 ls -ltr 39 service httpd stop [Note that the previous service httpd stop after pwd got erased] 40 history | tail -6
使用 HISTCONTROL 強制 history 不記住特定的命令
將 HISTCONTROL 設置爲 ignorespace,並在不想被記住的命令前面輸入一個空格:
# export HISTCONTROL=ignorespace # ls -ltr # pwd # service httpd stop [Note that there is a space at the beginning of service, to ignore this command from history] # history | tail -3 67 ls -ltr 68 pwd 69 history | tail -3
使用 -c 選項清除全部的命令歷史
若是你想清除全部的命令歷史,能夠執行:
# history -c
命令替換
在下面的例子裏,!!:$ 將爲當前的命令得到上一條命令的參數:
# ls anaconda-ks.cfg anaconda-ks.cfg # vi !!:$ vi anaconda-ks.cfg
補充:使用 !$ 能夠達到一樣的效果,並且更簡單。[感謝 wanzigunzi 讀者補充]
下例中,!^ 從上一條命令得到第一項參數:
# cp anaconda-ks.cfg anaconda-ks.cfg.bak anaconda-ks.cfg # vi -5 !^ vi anaconda-ks.cfg
爲特定的命令替換指定的參數
在下面的例子,!cp:2 從命令歷史中搜索以 cp 開頭的命令,並獲取它的第二項參數:
# cp ~/longname.txt /really/a/very/long/path/long-filename.txt # ls -l !cp:2 ls -l /really/a/very/long/path/long-filename.txt
下例裏,!cp:$ 獲取 cp 命令的最後一項參數:
# ls -l !cp:$ ls -l /really/a/very/long/path/long-filename.txt
使用 HISTSIZE 禁用 history
若是你想禁用 history,能夠將 HISTSIZE 設置爲 0:
# export HISTSIZE=0 # history # [Note that history did not display anything]
使用 HISTIGNORE 忽略歷史中的特定命令
下面的例子,將忽略 pwd、ls、ls -ltr 等命令:
# export HISTIGNORE=」pwd:ls:ls -ltr:」 # pwd # ls # ls -ltr # service httpd stop # history | tail -3 79 export HISTIGNORE=」pwd:ls:ls -ltr:」 80 service httpd stop 81 history [Note that history did not record pwd, ls and ls -ltr]