亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Linux history命令怎么使用

發布時間:2022-02-01 08:37:43 來源:億速云 閱讀:223 作者:iii 欄目:開發技術

這篇文章主要介紹“Linux history命令怎么使用”的相關知識,小編通過實際案例向大家展示操作過程,操作方法簡單快捷,實用性強,希望這篇“Linux history命令怎么使用”文章能幫助大家解決問題。

history命令用于顯示指定數目的指令命令,讀取歷史命令文件中的目錄到歷史命令緩沖區和將歷史命令緩沖區中的目錄寫入命令文件。該命令單獨使用時,僅顯示歷史命令,在命令行中,可以使用符號!執行指定序號的歷史命令。

Linux history命令怎么使用

使用 HISTTIMEFORMAT 顯示時間戳

當你從命令行執行 history 命令后,通常只會顯示已執行命令的序號和命令本身,如果你想要查看命令歷史的時間戳,那么可以執行:

# 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

注意:這個功能只能用在當 HISTTIMEFORMAT 這個環境變量被設置之后的那些新執行的 bash 命令才會被打上正確的時間戳。在此之前的所有命令,都將會顯示成設置 HISTTIMEFORMAT 變量的時間。

使用 Ctrl+R 搜索歷史

Ctrl+R 是我經常使用的一個快捷鍵,此快捷鍵讓你對命令歷史進行搜索,對于想要重復執行某個命令的時候非常有用。當找到命令后,通常再按回車鍵就可以執行pre該命令,如果想對找到的命令進行調整后再執行,則可以按一下左或右方向鍵。

# [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 種方法可以重復執行上一條命令:

?

1.使用上方向鍵,并回車執行。 2.按 !! 并回車執行。 3.輸入 !-1 并回車執行。 4.按 Ctrl+P 并回車執行。

從命令歷史中執行一個指定的命令

在下面的例子中,如果你想重復執行第 4 條命令,那么可以執行 !4:

# history | more1  service network restart
2  exit3  id
4  cat /etc/redhat-release# !4cat /etc/redhat-release
Fedora release 9 (Sulphur)

通過指定關鍵字來執行以前的命令

在下面的例子,輸入 !ps 并回車,將執行以 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

使用 HISTSIZE 控制歷史命令記錄的總行數

將下面兩行內容追加到 .bash_profile 文件并重新登錄 bash shell,命令歷史的記錄數將變成 450 條:

# vi ~/.bash_profileHISTSIZE=450
HISTFILESIZE=450

使用 HISTFILE 更改歷史文件名稱

默認情況下,命令歷史存儲在 ~/.bash_history 文件中,添加下列內容到 .bash_profile 文件并重新登錄 bash shell,將使用 .commandline_warrior 來存儲命令歷史:

# vi ~/.bash_profileHISTFILE=/root/.commandline_warrior

使用 HISTCONTROL 從命令歷史中剔除連續重復的條目

在下面的例子中,pwd 命令被連續執行了三次。執行 history 后你會看到三條重復的條目,要剔除這些重復的條目,你可以將 HISTCONTROL 設置為 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

使用 HISTCONTROL 清除整個命令歷史中的重復條目

上例中的 ignoredups 只能剔除連續的重復條目,要清除整個命令歷史中的重復條目,可以將 HISTCONTROL 設置成 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 強制 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 -367  ls -ltr
68  pwd69  history | tail -3

使用 -c 選項清除所有的命令歷史

如果你想清除所有的命令歷史,可以執行:

# history -c

命令替換

在下面的例子里,!!:$ 將為當前的命令獲得上一條命令的參數:

# ls anaconda-ks.cfganaconda-ks.cfg# vi !!:$vi anaconda-ks.cfg

補充:使用 !$ 可以達到同樣的效果,而且更簡單。下例中,!^ 從上一條命令獲得第一項參數:

# cp anaconda-ks.cfg anaconda-ks.cfg.bakanaconda-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:2ls -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 -379  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命令怎么使用”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識,可以關注億速云行業資訊頻道,小編每天都會為大家更新不同的知識點。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

西盟| 密云县| 若尔盖县| 东平县| 湘潭县| 无为县| 杨浦区| 孟村| 南昌县| 普定县| 瓦房店市| 玉树县| 安吉县| 普格县| 彰化市| 漠河县| 桓台县| 新乡县| 宾阳县| 扶绥县| 梧州市| 安义县| 佛山市| 保康县| 扎兰屯市| 潼南县| 驻马店市| 三门峡市| 平潭县| 石家庄市| 康保县| 呼图壁县| 青岛市| 嘉义县| 武陟县| 黔南| 桓台县| 万源市| 博湖县| 桦川县| 安福县|