linux shell 查詢命令歷史總結

2021-10-11 02:27:17 字數 911 閱讀 7405

ctrl + p/n	#與方向上下鍵功能無異
linux的history命令的作用是,記錄執行過的命令。

history n 	# n為數字,列出最近的n條命令

history -c # 將目前shell中的所有history命令消除

history [-raw] histfiles #-a/-r/-w 為引數, histfiles為路徑

-a 將目前新增的命令寫入histfiles, 預設寫入~/.bash_history

-r 將histfiles內容讀入到目前shell的history記憶中

-w 將目前history記憶的內容寫入到histfiles

使用!number # number表示history 前列出的數字可以執行指定序號的命令

!!執行上一條命令

shell > !1046

history 3

1045 14-11-02 16:22:38 head ~/.bash_history

1046 14-11-02 16:35:37 history 3

1047 14-11-02 16:35:48 history 3

shell > !!

history 3

1046 14-11-02 16:35:37 history 3

1047 14-11-02 16:35:48 history 3

1048 14-11-02 16:35:52 history 3

linux history

linux檢視歷史命令history

LinuxShell 查詢命令 檔案

linuxshell目錄傳送門 man whichlocate a command 定位乙個命令 言簡意賅,它就是告訴你,這個命令的可執行檔案放在哪.如 man whereislocate the binary,source,and manual page files for a command 定...

Linux shell 查詢操作

有時可能需要在系統中查詢具有某一特徵的檔案,find 是乙個非常有效的工具。find pathname options print exec ok 讓我們來看看該命令的引數 pathname find命令所查詢的目錄路徑。例如用 來表示當前目錄,用 來表示系統根目錄。print find命令將匹配的...

Linux Shell命令 tr命令

在linux常用的命令中,我們可以通過使用tr,非常容易地實現 sed 的許多最基本功能。1 定義 日常操作中,tr用來從標準輸入中通過替換或刪除操作進行字元轉換。2 使用格式 tr c d s string1 to translate from string2 to translate to in...