您好,登錄后才能下訂單哦!
這篇文章主要介紹“Linux history命令怎么使用”的相關(guān)知識(shí),小編通過(guò)實(shí)際案例向大家展示操作過(guò)程,操作方法簡(jiǎn)單快捷,實(shí)用性強(qiáng),希望這篇“Linux history命令怎么使用”文章能幫助大家解決問(wèn)題。
history命令用于顯示指定數(shù)目的指令命令,讀取歷史命令文件中的目錄到歷史命令緩沖區(qū)和將歷史命令緩沖區(qū)中的目錄寫(xiě)入命令文件。該命令單獨(dú)使用時(shí),僅顯示歷史命令,在命令行中,可以使用符號(hào)!
執(zhí)行指定序號(hào)的歷史命令。
當(dāng)你從命令行執(zhí)行 history 命令后,通常只會(huì)顯示已執(zhí)行命令的序號(hào)和命令本身,如果你想要查看命令歷史的時(shí)間戳,那么可以執(zhí)行:
# export HISTTIMEFORMAT='%F %T '# history | more1 2008-08-05 19:02:39 service network restart 2 2008-08-05 19:02:39 exit3 2008-08-05 19:02:39 id 4 2008-08-05 19:02:39 cat /etc/redhat-release
注意:這個(gè)功能只能用在當(dāng) HISTTIMEFORMAT 這個(gè)環(huán)境變量被設(shè)置之后的那些新執(zhí)行的 bash 命令才會(huì)被打上正確的時(shí)間戳。在此之前的所有命令,都將會(huì)顯示成設(shè)置 HISTTIMEFORMAT 變量的時(shí)間。
Ctrl+R 是我經(jīng)常使用的一個(gè)快捷鍵,此快捷鍵讓你對(duì)命令歷史進(jìn)行搜索,對(duì)于想要重復(fù)執(zhí)行某個(gè)命令的時(shí)候非常有用。當(dāng)找到命令后,通常再按回車鍵就可以執(zhí)行pre該命令,如果想對(duì)找到的命令進(jìn)行調(diào)整后再執(zhí)行,則可以按一下左或右方向鍵。
# [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-releaseFedora release 9 (Sulphur)
有 4 種方法可以重復(fù)執(zhí)行上一條命令:
?
1.使用上方向鍵,并回車執(zhí)行。 2.按 !! 并回車執(zhí)行。 3.輸入 !-1 并回車執(zhí)行。 4.按 Ctrl+P 并回車執(zhí)行。
在下面的例子中,如果你想重復(fù)執(zhí)行第 4 條命令,那么可以執(zhí)行 !4:
# history | more1 service network restart 2 exit3 id 4 cat /etc/redhat-release# !4cat /etc/redhat-release Fedora release 9 (Sulphur)
在下面的例子,輸入 !ps 并回車,將執(zhí)行以 ps 打頭的命令:
# !psps 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
將下面兩行內(nèi)容追加到 .bash_profile 文件并重新登錄 bash shell,命令歷史的記錄數(shù)將變成 450 條:
# vi ~/.bash_profileHISTSIZE=450 HISTFILESIZE=450
默認(rèn)情況下,命令歷史存儲(chǔ)在 ~/.bash_history 文件中,添加下列內(nèi)容到 .bash_profile 文件并重新登錄 bash shell,將使用 .commandline_warrior 來(lái)存儲(chǔ)命令歷史:
# vi ~/.bash_profileHISTFILE=/root/.commandline_warrior
在下面的例子中,pwd 命令被連續(xù)執(zhí)行了三次。執(zhí)行 history 后你會(huì)看到三條重復(fù)的條目,要剔除這些重復(fù)的條目,你可以將 HISTCONTROL 設(shè)置為 ignoredups:
# pwd# pwd# pwd# history | tail -444 pwd45 pwd46 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 -356 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
上例中的 ignoredups 只能剔除連續(xù)的重復(fù)條目,要清除整個(gè)命令歷史中的重復(fù)條目,可以將 HISTCONTROL 設(shè)置成 erasedups:
# export HISTCONTROL=erasedups# pwd# service httpd stop# history | tail -338 pwd39 service httpd stop 40 history | tail -3# ls -ltr# service httpd stop# history | tail -635 export HISTCONTROL=erasedups 36 pwd37 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 設(shè)置為 ignorespace,并在不想被記住的命令前面輸入一個(gè)空格:
# 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 -367 ls -ltr 68 pwd69 history | tail -3
如果你想清除所有的命令歷史,可以執(zhí)行:
# history -c
在下面的例子里,!!:$ 將為當(dāng)前的命令獲得上一條命令的參數(shù):
# ls anaconda-ks.cfganaconda-ks.cfg# vi !!:$vi anaconda-ks.cfg
補(bǔ)充:使用 !$ 可以達(dá)到同樣的效果,而且更簡(jiǎn)單。下例中,!^ 從上一條命令獲得第一項(xiàng)參數(shù):
# cp anaconda-ks.cfg anaconda-ks.cfg.bakanaconda-ks.cfg# vi -5 !^vi anaconda-ks.cfg
在下面的例子,!cp:2 從命令歷史中搜索以 cp 開(kāi)頭的命令,并獲取它的第二項(xiàng)參數(shù):
# cp ~/longname.txt /really/a/very/long/path/long-filename.txt# ls -l !cp:2ls -l /really/a/very/long/path/long-filename.txt
下例里,!cp:$ 獲取 cp 命令的最后一項(xiàng)參數(shù):
# ls -l !cp:$ls -l /really/a/very/long/path/long-filename.txt
如果你想禁用 history,可以將 HISTSIZE 設(shè)置為 0:
# export HISTSIZE=0# history# [Note that history did not display anything]
下面的例子,將忽略 pwd、ls、ls -ltr 等命令:
# export HISTIGNORE=”pwd:ls:ls -ltr:”# pwd# ls# ls -ltr# service httpd stop# history | tail -379 export HISTIGNORE=”pwd:ls:ls -ltr:” 80 service httpd stop 81 history[Note that history did not record pwd, ls and ls -ltr]
關(guān)于“Linux history命令怎么使用”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識(shí),可以關(guān)注億速云行業(yè)資訊頻道,小編每天都會(huì)為大家更新不同的知識(shí)點(diǎn)。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。