技術(shù)員聯(lián)盟提供win764位系統(tǒng)下載,win10,win7,xp,裝機(jī)純凈版,64位旗艦版,綠色軟件,免費(fèi)軟件下載基地!

當(dāng)前位置:主頁(yè) > 教程 > 服務(wù)器類(lèi) >

在Linux命令終端中查看和編輯曾執(zhí)行過(guò)的命令

來(lái)源:技術(shù)員聯(lián)盟┆發(fā)布時(shí)間:2018-01-20 06:14┆點(diǎn)擊:

  history 命令可以用來(lái)顯示曾執(zhí)行過(guò)的命令,也可以根據(jù)顯示的治療來(lái)重新執(zhí)行需要的命令

  n 顯示n個(gè)最近的記錄

  -a 添加記錄

  -r 讀取記錄,但不會(huì)添加內(nèi)容記錄

  -w 覆蓋原有的history 文件

  -c 清除記錄

  -d<編號(hào)>[n] 刪除指定n條記錄

  -n<文件> 讀取指定文件

  -r<文件> 讀取文件但不記錄

  -w<文件> 覆蓋原有文件

  例1

  代碼如下:

  [root@redhat ~]# history #查看所有執(zhí)行過(guò)的命令

  1 ls

  2 pwd

  3 fc -l

  4 history

  代碼如下:

  [root@redhat ~]# history 2 #顯示2條

  4 history

  5 history 2

  代碼如下:

  [root@redhat ~]# !4 #執(zhí)行編號(hào)是4的命令,注意感嘆號(hào)

  history

  1 ls

  2 pwd

  3 fc -l

  4 history

  5 history 2

  6 history

  代碼如下:

  [root@redhat ~]# history -c #清除歷史記錄

  !$ 引用前一個(gè)命令的最后一個(gè)參數(shù)

  代碼如下:

  [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í)行倒數(shù)第N條命令

  [root@redhat ~]# !! #執(zhí)行上一條命令

  fc

  fc 命令可以編輯曾今執(zhí)行過(guò)的命令,并以批處理的形式讓這些命令重新執(zhí)行

  -1 列出第一個(gè)指令和最后一個(gè)指令之間額度所有指令

  -n 不顯示編號(hào)

  -r 反向排序

  -e<文本編輯器> 指定文本編輯器編輯,默認(rèn)Vi

  -s<指令> 選擇指令執(zhí)行

  例1

  代碼如下:

  [root@redhat ~]# fc -l #查看執(zhí)行過(guò)的命令,根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個(gè)命令