Linux下history命令用法
Linux下history命令用法
(2010-01-27 11:05:13)如果你經常使用 Linux 命令列,那麼使用 history(歷史)命令可以有效地提升你的效率。本文將透過例項的方式向你介紹 history 命令的 15 個用法。
-
使用 HISTTIMEFORMAT 顯示時間戳
當你從命令列執行 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 讀者補充]
-
使用 Ctrl+R 搜尋歷史
Ctrl+R 是我經常使用的一個快捷鍵。此快捷鍵讓你對命令歷史進行搜尋,對於想要重複執行某個命令的時候非常有用。當找到命令後,通常再按Enter鍵就可以執行該命令。如果想對找到的命令進行調整後再執行,則可以按一下左或右方向鍵。
# [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)
-
快速重複執行上一條命令
有 4 種方法可以重複執行上一條命令:
- 使用上方向鍵,並回車執行。
- 按 !! 並回車執行。
- 輸入 !-1 並回車執行。
- 按 Ctrl+P 並回車執行。
-
從命令歷史中執行一個指定的命令
在下面的例子中,如果你想重複執行第 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 更改歷史檔名稱
預設情況下,命令歷史儲存在 ~/.bash_history 檔案中。新增下列內容到 .bash_profile 檔案並重新登入 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]
如果你經常使用Linux命令,那麼使用history命令無疑會提升你的工作效率。
History命令主要用於顯示歷史指令記錄內容, 下達歷史紀錄中的指令 。
1>History命令語法:
[test@linux]# history [n]
[test@linux]# history [-c]
[test@linux]# history [-raw] histfiles
引數:
n
-c
-a
則預設寫入 ~/.bash_history
-r
-w
Linux系統當你在shell(控制檯)中輸入並執行命令時,shell會自動把你的命令記錄到歷史列表中,一般儲存在使用者目錄下的.bash_history檔案中。預設儲存1000條,你也可以更改這個值。
如果你鍵入 history, history會向你顯示你所使用的前1000個歷史命令,並且給它們編了號,你會看到一個用數字編號的列表快速從螢幕上捲過。你可能不需要檢視1000個命令中的所有專案, 當然你也可以加入數字來列出最近的 n 筆命令列表。
linux中history命令不僅僅讓我們可以查詢歷史命令而已. 我們還可以利用相關的功能來幫我們執行命令。
2>執行特定的歷史命令
history會列出bash儲存的所有歷史命令,並且給它們編了號,我們可以使用“歎號接編號”的方式執行特定的歷史命令.
語法說明:
[test@linux]# [!number]
引數說明:
number
command
!
3>History命令實戰
列出所有的歷史記錄:
[test@linux] # history
只列出最近10條記錄:
[test@linux] # history 10 (注,history和10中間有空格)
使用命令記錄號碼執行命令,執行歷史清單中的第99條命令
[test@linux] #!99 (!和99中間沒有空格)
重複執行上一個命令
[test@linux] #!!
執行最後一次以rpm開頭的命令(!?
[test@linux] #!rpm
逐屏列出所有的歷史記錄:
[test@linux]# history | more
立即清空history當前所有歷史命令的記錄
[test@l<wbr><wbr><wbr><wbr><wbr><wbr><wbr><wbr><wbr><wbr><wbr><wbr><wbr><wbr><wbr><wbr><wbr><wbr>
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/500314/viewspace-1793087/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Linux系統下活用History命令Linux
- Linux下history命令簡單原理Linux
- History(歷史)命令用法 15 例
- linux下date命令用法Linux
- linux下修改history命令儲存條數Linux
- linux-history命令Linux
- Linux——基礎命令用法(下)Linux
- Linux下crontab命令的用法Linux
- Linux下echo命令的用法Linux
- Linux下touch命令的用法Linux
- Linux下umask命令的用法Linux
- 【轉】Linux下history命令配置及高階應用Linux
- Linux下more命令高階用法Linux
- Linux下mv命令高階用法Linux
- linux下xargs命令用法詳解Linux
- LINUX下RPM命令基本用法Linux
- Linux下find命令的用法(轉)Linux
- linux命令下jq的用法簡介Linux
- linux下grep命令用法例項教程Linux
- linux history命令使用tip_ztLinux
- [20121121]關於linux下history命令.txtLinux
- Linux下crontab命令的用法:sudo crontab -lLinux
- Linux下RPM 命令用法中文簡介Linux
- Linux 基礎教程 44-history命令Linux
- linux中history命令的簡單使用Linux
- Linux下 ls 命令的高階用法8例Linux
- Linux sed命令用法Linux
- linux du命令用法Linux
- Linux 命令 indent 用法Linux
- Linux高階命令——cut命令用法Linux
- 常見命令-history
- Linux命令-Sed用法教程Linux
- 【Linux之truncate 命令用法】Linux
- linux 的xargs命令用法Linux
- Linux 命令“ls ” 的用法Linux
- Linux 下使用 killall 命令終止程式的 8 大用法Linux
- linux下find(檔案查詢)命令的用法總結Linux
- bash魔法堂:History用法詳解