在Linux命令終端中查看和編輯曾執(zhí)行過的命令
Linux命令手冊 發(fā)布時間:2016-01-30 11:45:35 作者:張映
我要評論

這篇文章主要介紹了在Linux命令終端中查看和編輯曾執(zhí)行過的命令的方法,講解了history和fc命令的使用,需要的朋友可以參考下
history
history 命令可以用來顯示曾執(zhí)行過的命令,也可以根據顯示的治療來重新執(zhí)行需要的命令
n 顯示n個最近的記錄
-a 添加記錄
-r 讀取記錄,但不會添加內容記錄
-w 覆蓋原有的history 文件
-c 清除記錄
-d<編號>[n] 刪除指定n條記錄
-n<文件> 讀取指定文件
-r<文件> 讀取文件但不記錄
-w<文件> 覆蓋原有文件
例1
復制代碼
代碼如下:[root@redhat ~]# history #查看所有執(zhí)行過的命令
1 ls
2 pwd
3 fc -l
4 history
復制代碼
代碼如下:[root@redhat ~]# history 2 #顯示2條
4 history
5 history 2
復制代碼
代碼如下:[root@redhat ~]# !4 #執(zhí)行編號是4的命令,注意感嘆號
history
1 ls
2 pwd
3 fc -l
4 history
5 history 2
6 history
復制代碼
代碼如下:[root@redhat ~]# history -c #清除歷史記錄
!$ 引用前一個命令的最后一個參數
復制代碼
代碼如下:[tank@localhost workspace]$ ls -all
總用量 1060
drwxrwxr-x. 15 tank tank 4096 8月 6 16:26 .
drwx------. 60 tank tank 4096 8月 15 16:13 ..
-rw-r--r-- 1 root root 2466 7月 23 18:02 1.html
drwxr-xr-x 7 tank tank 4096 7月 17 03:02 ckeditor
drwxr-xr-x. 2 tank tank 4096 5月 29 00:08 database
復制代碼
代碼如下:[tank@localhost workspace]$ !$ #取得-all
-all
bash: -all: command not found
例2
復制代碼
代碼如下:[root@redhat ~]# ! -N #執(zhí)行倒數第N條命令
[root@redhat ~]# !! #執(zhí)行上一條命令
fc
fc 命令可以編輯曾今執(zhí)行過的命令,并以批處理的形式讓這些命令重新執(zhí)行
-1 列出第一個指令和最后一個指令之間額度所有指令
-n 不顯示編號
-r 反向排序
-e<文本編輯器> 指定文本編輯器編輯,默認Vi
-s<指令> 選擇指令執(zhí)行
例1
復制代碼
代碼如下:[root@redhat ~]# fc -l #查看執(zhí)行過的命令,根history,很相似
348 eval echo "aaa" ls
349 eval echo "aaa";ls
350 exec ls
351 apt-get install mysql
352 apt-get install mysql-server
353 exit
354 expr 4%6
355 expr 4 % 6
356 expr 4<6
357 expr 4'<'6
358 expr 6 '+' 5
359 expr 6 '*' 5
360 expr 6 '>' 5
361 fc -l
362 man fc
363 fc --help
復制代碼
代碼如下:[root@redhat ~]# fc -s 358 #執(zhí)行第358個命令
expr 6 '+' 5
11
復制代碼
代碼如下:[root@redhat ~]# fc 358 #編輯第358個命令
相關文章
- 這篇文章主要介紹了Linux history命令的幾個使用小技巧,Linux中的history命令很常用,無論是對管理員.普通用戶還是黑客,從另一個角度來說,它對安全的重要性也不言而喻,需要2015-06-03
- 使用Linux下的history命令我們可以查看用過的命令,今天本文將詳細介紹Linux下history的具體用法2014-12-29
- history命令在linux的系統(tǒng)管理中經常用到,是個使用率超高的命令。本文介紹history命令的15個用法實例2014-04-23
- 有時候我們需要在執(zhí)行大量命令操作的時候,需要查詢曾經用過的命令,那么就需要用history這個命令來實現2014-04-23
- Linux系統(tǒng)當你在shell(控制臺)中輸入并執(zhí)行命令時,shell會自動把你的命令記錄到歷史列表中,一般保存在用戶目錄下的.bash_history文件中。默認保存1000條,你也可以更改這2012-12-18