溫馨提示×

溫馨提示×

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

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

history命令詳解

發(fā)布時間:2020-07-31 17:50:31 來源:網(wǎng)絡(luò) 閱讀:326 作者:wx5a1f8d23790cb 欄目:系統(tǒng)運維

1、manual說明
Display or manipulate the history list
顯示或操作命令歷史列表
2、概念區(qū)分
history list是在內(nèi)存緩存中的,history file就是在硬盤中的。history list針對當(dāng)前會話生效。history file 則針對所有會話都生效。當(dāng)?shù)卿浵到y(tǒng)系統(tǒng)時,系統(tǒng)就會自動將history list中,當(dāng)退出系統(tǒng)時,history list中的命令就會自動寫入到history file中去。
~/.bash_history 歷史列表的默認保存位置
~/.bash_profile 當(dāng)前用戶的環(huán)境變量的設(shè)置位置
/etc/profile 系統(tǒng)環(huán)境變量的默認設(shè)置位置
關(guān)于HISTORY的變量:
HISTSIZE 命令歷史記錄的條數(shù)
HISTFILE 指定歷史文件,默認為~/.bash_history
HISTFILESIZE: 命令歷史文件記錄歷史的條數(shù)
HISTTIMEFORMAT: HISTTIMEFORMAT=“%F%T” 顯示時間
history用法:
history [-c] [-d offset] [n] or history -anrw [filename] or history -ps arg [arg...]
Display the history list with line numbers, prefixing each modified entry with a `'. An argument of N lists only the last N entries
顯示帶有行號的歷史記錄列表,并在每個修改前加上前綴
帶有“
”的條目。N的參數(shù)只列出最后的N個元素。
Options:
-c: clear the history list by deleting all of the entries
通過刪除所有條目來清除歷史記錄列表
history命令詳解
-d offset: delete the history entry at offset OFFSET
在偏移位置刪除歷史記錄項(就是刪除指定數(shù)字的歷史條目)
history命令詳解
-a: append history lines from this session to the history file
將此會話的歷史記錄行追家到歷史記錄文件
history命令詳解
-n: read all history lines not already read from the history file 。
讀取尚未從歷史文件中讀取的所有歷史記錄行
history命令詳解
-r: read the history file and append the contents to the history list
讀取歷史文件然后追加到歷史記錄文件中
history命令詳解
-w: write the current history to the history file and append them to the history list
將當(dāng)前歷史寫入到歷史文件中,同時將他們追加到歷史列表中。
history命令詳解
-p: perform history expansion on each AGR and dispay the result without storing it in the history list
對每個參數(shù)執(zhí)行歷史擴展并顯示結(jié)果,而不將其存儲在歷史列表中
history命令詳解
-s: append the ARGs to the history list as a single entry
添加所有ARGs作為單獨的條目到歷史記錄條目中。
history命令詳解

其他比較常用的用法:
(一):查看歷史命令
history #顯示所有歷史命令’
history 10 #顯示最近的10條命令
(二)查看默認歷史命令條數(shù):
echo $HISTSIZE
這個環(huán)境變量定義在/etc/profile中
(三)命令重新調(diào)用
ls !407 #重新調(diào)用歷史命令中的正數(shù)第407個命令
ls !-4 #重新調(diào)用歷史中的倒數(shù)第4條命令
歷史命令分兩部分存放: .bash_history 和內(nèi)存中
正常退出時,內(nèi)存中的歷史命令會存儲到.bash_history中
(四)執(zhí)行前面倒數(shù)第一個以shut開頭的命令
!shut
(五)執(zhí)行前面一個包含go的命令
!?go
(六)執(zhí)行剛剛執(zhí)行過的命令
1、上下鍵翻
2、!-1
(七)搜索執(zhí)行過的命令
history命令詳解

向AI問一下細節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI