學習linux命令,看這篇2W多字的linux命令詳解

龍躍十二發表於2020-01-05

用心分享,共同成長

沒有什麼比每天進步一點點更重要了

本文已收錄到我的github:github.com/midou-tech/… ,歡迎star和issues。

序言

 本篇文章主要講解了一些linux常用命令,主要講解模式是,命令介紹、命令引數格式、命令引數、命令常用引數示例。由於linux命令較多,我還特意選了一些日常使用較為頻繁的命令進行講解,但還是免不了文章很長,建議大家收藏起來,用到的時候不會了再來閱讀。當然學習linux命令最好的方法是學會使用linux自帶的man手冊,所有linux命令規範和使用細則都會在該手冊中講解的很清楚,我在書寫的過程中也是參考該手冊和日常使用情況。

如果還有哪些是大家希望再補充的命令,可以留言給我,我會持續更新該文章,同時也作為我學習和工作的手冊。

Linux初級指令

ls ——List

ls 介紹

 這是我學Linux的第一個命令,相信也是很多人學習Linux的第一個命令。ls全稱list.

List information about the FILEs (the current directory by default). Sort entries alphabetically if none of -cftuvSUX nor --sort is specified.

列出有關檔案的資訊(預設為當前目錄)。如果沒有指定-cftuvSUX或——Sort,則按字母順序排序。

 官方的說的很清楚,預設列出當前目錄,所以可以列出其他目錄或者路徑下的檔案資訊或者目錄資訊。

eg:

$ls /etc/hosts
/etc/hosts
複製程式碼

 ls還可以列出指定目錄下的檔案列表。

image-20191221161638964
image-20191221161638964

ls 引數格式

ls [OPTION]... [FILE]...

ls命令引數

-a 列出指定目錄下的所有檔案,包括隱藏檔案

-c 使用最後一次更改檔案狀態以進行排序(-t)或長時間列印(-l)的時間

-h 與-l選項一起使用時,請使用單位字尾:Byte、Kilobyte、mete、gb、tb和Petabyte,以便使用以2為基數的大小將數字減少到3或更少

-l 長格式列表。(見下文)。如果輸出到終端,則所有檔案大小的總和將輸出到長清單前面的一行中

-n 以數字形式顯示使用者和組id,而不是在長(-l)輸出中轉換為使用者或組名。這個選項預設開啟-l選項

-o 以長格式列出,但省略組id

-s 顯示每個檔案實際使用的檔案系統塊的數量,以512位元組為單位,其中部分單元四捨五入為下一個整數值

-t 在按照字典順序對運算元排序之前,先按修改的時間排序(最近修改的是first)

-u 使用最後一次訪問的時間,而不是最後一次修改檔案進行排序

ls 用法示例:

$ ls
test  tmp
$ ls -a
.  ..  .bash_history  .bash_logout  .bash_profile  .bashrc  test  tmp
#可以看到通過ls -a 可以檢視當前目錄影藏的檔案,Linux下(.)開頭的檔案是隱藏檔案。
$ ls -l
total 4
-rw-r--r-- 1 test hero    0 Dec 21 19:54 test
drwxr-xr-x 2 test hero 4096 Dec 21 19:54 tmp
$ ls -lh
total 4.0K
-rw-r--r-- 1 test hero    0 Dec 21 19:54 test
drwxr-xr-x 2 test hero 4.0K Dec 21 19:54 tmp
$ ls -ll
total 4
-rw-r--r-- 1 test hero    0 Dec 21 19:54 test
drwxr-xr-x 2 test hero 4096 Dec 21 19:54 tmp
$ ls -alh
total 28K
drwx------   3 test hero 4.0K Dec 21 19:54 .
drwxr-xr-x. 19 root  root 4.0K Aug  1 10:41 ..
-rw-------   1 test hero  226 Dec 21 19:54 .bash_history
-rw-r--r--   1 test hero   18 Aug  3  2016 .bash_logout
-rw-r--r--   1 test hero  193 Aug  3  2016 .bash_profile
-rw-r--r--   1 test hero  231 Aug  3  2016 .bashrc
-rw-r--r--   1 test hero    0 Dec 21 19:54 test
drwxr-xr-x   2 test hero 4.0K Dec 21 19:54 tmp
$ ls -o
total 4
-rw-r--r-- 1 test    0 Dec 21 19:54 test
drwxr-xr-x 2 test 4096 Dec 21 19:54 tmp
$ ls -oh
total 4.0K
-rw-r--r-- 1 test    0 Dec 21 19:54 test
drwxr-xr-x 2 test 4.0K Dec 21 19:54 tmp
複製程式碼

pwd —— Print Working Directory

pwd介紹

 列印當前工作目錄的完整路徑名。(print name of current/working directory)

引數格式

pwd [OPTION]...

pwd 用法展示

[test@Mfate171193 /home/test] 20:06
pwd
/home/test
複製程式碼

touch (change file timestamps)

touch介紹

Update the access and modification times of each FILE to the current time.

A FILE argument that does not exist is created empty, unless -c or -h is supplied.

 將每個檔案的訪問和修改時間更新為當前時間。除非提供-c或-h,否則將不存在的FILE引數建立為空。

touch引數格式

touch [OPTION]... FILE...

touch命令引數

-a 或--time=atime或--time=access或--time=use 只更改存取時間。

-c 或--no-create 不建立任何文件。

-d 使用指定的日期時間,而非現在的時間。

-f 此引數將忽略不予處理,僅負責解決BSD版本touch指令的相容性問題。

-m 或--time=mtime或--time=modify 只更改變動時間。

-r 把指定文件或目錄的日期時間,統統設成和參考文件或目錄的日期時間相同。

-t 使用指定的日期時間,而非現在的時間。

用法示例

#建立三個檔案
$ touch test1 test2 test3
#不建立文件
$ touch -c test5  
$ ls
test1  test2  test3
#可以看到只建立了test1、test2、test3 , -c不建立任何檔案
$ touch -t 201911110000 test1
stat test*
#stat命令可以檢視檔案的詳細變更時間,可以test1檔案的最後修改時間為201911110000,說明touch -t可以修改檔案最後訪問時間。這個引數還是很有用的,你可以把你最近訪問的時間修改為一個很早的時間。可以做一些有趣的事情,哈哈。
  File: ‘test1’
  Size: 0             Blocks: 0          IO Block: 4096   regular empty file
Device: fd01h/64769d    Inode: 360736      Links: 1
Access: (0644/-rw-r--r--)  Uid: (14060/   localhost)   Gid: ( 1001/    hero)
Access: 2019-11-11 00:00:00.000000000 +0800
Modify: 2019-11-11 00:00:00.000000000 +0800
Change: 2019-12-21 20:58:11.290761038 +0800
 Birth: -
  File: ‘test2’
  Size: 0             Blocks: 0          IO Block: 4096   regular empty file
Device: fd01h/64769d    Inode: 360738      Links: 1
Access: (0644/-rw-r--r--)  Uid: (14060/   localhost)   Gid: ( 1001/    hero)
Access: 2019-12-21 20:56:34.523761038 +0800
Modify: 2019-12-21 20:56:34.523761038 +0800
Change: 2019-12-21 20:56:34.523761038 +0800
 Birth: -
  File: ‘test3’
  Size: 0             Blocks: 0          IO Block: 4096   regular empty file
Device: fd01h/64769d    Inode: 360740      Links: 1
Access: (0644/-rw-r--r--)  Uid: (14060/   localhost)   Gid: ( 1001/    hero)
Access: 2019-12-21 20:56:34.523761038 +0800
Modify: 2019-12-21 20:56:34.523761038 +0800
Change: 2019-12-21 20:56:34.523761038 +0800
 Birth: -
複製程式碼

cat&tac (Concatenate FILE(s), or standard input, to standard output.)

cat介紹

Concatenate FILE(s), or standard input, to standard output.

將FILE或標準輸入連線到標準輸出。

cat 引數格式

cat [OPTION]... [FILE]...

cat命令引數

-A, --show-all 等價於 -vET

-b, --number-nonblank 對非空輸出行編號

-e 等價於 -vE

-E, --show-ends 在每行結束處顯示

-n, --number 對輸出的所有行編號,由1開始對所有輸出的行數編號

-s, --squeeze-blank 有連續兩行以上的空白行,就代換為一行的空白行

-t 與 -vT 等價

-T, --show-tabs 將跳格字元顯示為 ^I

-u (被忽略)

-v, --show-nonprinting 使用 ^ 和 M- 引用,除了 LFD 和 TAB 之外

cat常用引數示例

$ cat test  #展示檔案內容
-A, --show-all      等價於 -vET
-b, --number-nonblank  對非空輸出行編號
-e            等價於 -vE

$ cat -n test  #展示檔案內容並且展示行號
     1    -A, --show-all      等價於 -vET
     2    -b, --number-nonblank  對非空輸出行編號
     3    -e            等價於 -vE
複製程式碼

tac命令與cat命令展示內容相反,不能帶行號輸出。

$ tac test
-e            等價於 -vE
-b, --number-nonblank  對非空輸出行編號
-A, --show-all      等價於 -vET
複製程式碼

mkdir —— Make Directory

mkdir介紹

Create the DIRECTORY(ies), if they do not already exist.

如果目錄不存在,則建立目錄。

mkdir引數格式

mkdir [OPTION]... DIRECTORY...

mkdir命令引數

-m, --mode=模式,設定許可權<模式> (類似 chmod),而不是 rwxrwxrwx 減 umask

-p, --parents 可以是一個路徑名稱。此時若路徑中的某些目錄尚不存在,加上此選項後,系統將自動建立好那些尚不存在的目錄,即一次可以建立多個目錄;

-v, --verbose 每次建立新目錄都顯示資訊

--help 顯示此幫助資訊並退出

--version 輸出版本資訊並退出

mkdir常用引數示例

#建立目錄檔案test
$ mkdir test
#連續建立
$ mkdir -p test1/tmp
$ ls
test  test1
#建立時置頂目錄許可權
#tmp目錄擁有可執行許可權,Linux檔案許可權問題後期文章會詳細講到,記得關注我
$ mkdir -pm 777 test2/tmp
$ ls -lh
total 12K
drwxr-xr-x 2 localhost hero 4.0K Dec 21 21:39 test
drwxr-xr-x 3 localhost hero 4.0K Dec 21 21:40 test1
drwxr-xr-x 3 localhost hero 4.0K Dec 21 21:40 test2
$ ls
test  test1  test2
#-v 引數可確定檔案是否已經存在,如果不存在則會建立,並顯示如下資訊
$ mkdir -v test
mkdir: cannot create directory ‘test’: File exists

$ mkdir -v test7
mkdir: created directory ‘test7’
複製程式碼

cd —— Change Directory

cd介紹

 切換當前目錄至指定目錄

常用引數示例

#列印當前目錄到標準輸出
pwd
/Users/localhost
#切換到目錄/
$cd /
複製程式碼

 cd命令沒什麼引數就是切換目錄到指定路徑下,較為簡單,但是使用評率極高。

rm&rmdir —— Remove Directory

rm介紹

The rm utility attempts to remove the non-directory type files specified on the command line. If the permissions of the file do not permit writing, and the standard input device is a terminal, the user is prompted (on the standard error output) for confirmation.

rm實用程式嘗試刪除命令列上指定的非目錄型別檔案。 如果檔案的許可權不允許寫入,並且標準輸入裝置是終端,則會提示使用者(在標準錯誤輸出上)進行確認。

 rm命令使用時還是需要注意的,他的刪除恢復比較麻煩,有些系統會自帶-i引數,輸入命令之後還有一個確認步驟,有些是直接刪掉了,是真刪掉,從記憶體抹掉那種(其實底層是讓該檔案指標不指向該檔案的記憶體塊,記憶體上的內容原則上是存在的,但是恢復會比較複雜,需要掃描整塊記憶體塊才能拿到內容)。不要輕易刪掉你寫的重要程式碼,hh。

rm引數格式

rm [-dfiPRrvW] file ...

rm命令引數

-f, --force 忽略不存在的檔案,從不給出提示。

-i, --interactive 進行互動式刪除

-r, -R, --recursive 指示rm將引數中列出的全部目錄和子目錄均遞迴地刪除。

-d, --dir 刪除空目錄

rm常用引數示例

# 建立三個檔案
$ touch tmp.cc tmp.java tmp.py tmp.go
#建立目錄檔案
$ mkdir -p linux/test
#檢視檔案是否建立成功
$ ls
linux    tmp.cc   tmp.go   tmp.java tmp.py
#刪除檔案,並進行提示
$ rm -i tmp.cc
remove tmp.cc? y
#強制刪除
$ rm  -f tmp.go
#刪除目錄
$ rm -f linux  #刪除目錄失敗
rm: linux: is a directory
#迴圈刪除目錄下所有檔案
$ rm -rf linux  #刪除目錄成功,
$ ls
tmp.java tmp.py  
複製程式碼

 rmdir==rm -d 刪除空目錄

mv —— Move

mv介紹

In its first form, the mv utility renames the file named by the source operand to the destination path named by the target operand. This form is assumed when the last operand does not name an already existing directory.

In its second form, mv moves each file named by a source operand to a destination file in the existing directory named by the directory operand. The destination path for each operand is the pathname produced by the concatenation of the last operand, a slash, and the final pathname component of the named file.

總結下,就是移動目錄或者檔案到置頂目錄下,同時具有重新命名的功能。

mv引數格式

mv [-f | -i | -n] [-v] source target mv [-f | -i | -n] [-v] source ... directory

mv命令引數

-b :若需覆蓋檔案,則覆蓋前先行備份。

-f :force 強制的意思,如果目標檔案已經存在,不會詢問而直接覆蓋;

-i :若目標檔案 (destination) 已經存在時,就會詢問是否覆蓋

-n:不要覆蓋現有檔案。 (-n選項將覆蓋以前的任何-f或-i選項。)

-u :若目標檔案已經存在,且 source 比較新,才會更新(update)

mv常用引數示例

##修改檔名
$ touch tmp.cc

$ ls
tmp.cc

$ mv tmp.cc tmp.java

$ ls
tmp.java
#移動檔案或者目錄
pwd
/Users/localhost/test
#移動檔案並重新命名
$ mv /Users/localhost/logs/tmp.txt ./tmp.log 

$ ls /Users/localhost/logs/
discover-client metabase        tesla

$ ls ./
tmp.java tmp.log
#移動目錄並重新命名
$ mv /Users/localhost/logs/tesla  ./tesla.ba 

$ ls
tesla.ba tmp.java tmp.log
複製程式碼

 這個命令在寫makefile檔案的時候用起來很舒服,可以把編譯的結果移到指定目錄並重新命名。

cp —— Copy

cp介紹

In the first synopsis form, the cp utility copies the contents of the source_file to the target_file. In the second synopsis form, the contents of each named source_file is copied to the destination target_directory. The names of the files themselves are not changed. If cp detects an attempt to copy a file to itself, the copy will fail.

cp實用程式將source_file的內容複製到target_file。 在第二個大綱格式中,每個命名的source_file的內容都複製到目標target_directory。 檔案本身的名稱不會更改。 如果cp檢測到嘗試將檔案複製到自身的嘗試,則複製將失敗。

cp引數格式

cp [-R [-H | -L | -P]] [-fi | -n] [-apvX] source_file target_file cp [-R [-H | -L | -P]] [-fi | -n] [-apvX] source_file ... target_directory

命令引數

-a, --archive 等於-dR --preserve=all

--backup[=CONTROL 為每個已存在的目標檔案建立備份

-b 類似--backup 但不接受引數

--copy-contents 在遞迴處理是複製特殊檔案內容

-d 等於--no-dereference --preserve=links

-f, --force 如果目標檔案無法開啟則將其移除並重試(當 -n 選項

​ 存在時則不需再選此項)

-i, --interactive 覆蓋前詢問(使前面的 -n 選項失效)

-H 跟隨原始檔中的命令列符號連結

-l, --link 連結檔案而不復制

-L, --dereference 總是跟隨符號連結

-n, --no-clobber 不要覆蓋已存在的檔案(使前面的 -i 選項失效)

-P, --no-dereference 不跟隨原始檔中的符號連結

-p 等於--preserve=模式,所有權,時間戳

--preserve[=屬性列表 保持指定的屬性(預設:模式,所有權,時間戳),如果

​ 可能保持附加屬性:環境、連結、xattr 等

-R, -r, --recursive 複製目錄及目錄內的所有專案

常用引數示例

$ cat tmp.cc
change world

#拷貝檔案內容
$ cp tmp.cc tmp.java

$ cat tmp.java
change world
複製程式碼

echo

echo介紹

The echo utility writes any specified operands, separated by single blank (') characters and followed by a newline (\n') character, to the standard output.

echo實用程式將任何指定的運算元寫入標準輸出,這些運算元由單個空格()字元分隔,後跟換行符(\ n')字元。

這條命令較為簡單,常用來列印變數、文字內容到,例如:

echo "change world"
change world

#s輸出PWD環境變數的值
echo $PWD
/Users/localhost/test
複製程式碼

$PWD 是取當前路徑,然後echo到標準輸出,一般echo \$name 用來檢視某個環境變數的值

head&tail

head介紹

This filter displays the first count lines or bytes of each of the specified files, or of the standard input if no files are specified. If count is omitted it defaults to 10.

此過濾器顯示每個指定檔案或標準輸入(如果未指定檔案)的前幾行或位元組。

If more than a single file is specified, each file is preceded by a header consisting of the string ==> XXX <=='' whereXXX'' is the name of the file.

如果省略count,則預設為10.如果指定了多個檔案,則每個檔案的頭均由字串==> XXX <==''組成,其中XXX''為檔名 檔案。

head引數格式

head [-n count | -c bytes] [file ...]

head常用引數示例

-n 展示前n行

-c 展示前n個字元

head常用引數示例

$ cat -n test.txt #這就用上前面的cat命令的-n引數,要學會學以致用哦。
     1    用
     2    心
     3    分
     4    享,
     5    共
     6    同
     7    成
     8    長.
     9
    10    沒
    11    有
    12    什
    13    麼
    14    比
    15    你
    16    每
    17    天
    18    進
    19    步
    20    一
    21    點
    22    更
    23    實
    24    在
    25    了
    26    .

$ head test.txt  #預設展示10行



享,



長.



$ head -n15 test.txt #展示15行



享,



長.








$ head -c23 test.txt #展示前23個字元,中文一個漢字並非一個字元的(utf-8編碼中文字元長度是可變的)



享,

複製程式碼

tail命令完全和他相反,是從尾部開始展示文字,但是他的引數用法更多。

-f 迴圈讀取

-q 不顯示處理資訊

-v 顯示詳細的處理資訊

-c<數目> 顯示的位元組數

-n<行數> 顯示行數

--pid=PID 與-f合用,表示在程式ID,PID死掉之後結束.

-q, --quiet, --silent 從不輸出給出檔名的首部

-s, --sleep-interval=S 與-f合用,表示在每次反覆的間隔休眠S秒

tail和head命令經常用來檢視日誌,像我現在基本每天都會用,我的日誌檔案沒辦法用vim或者cat這樣去看(因為我負責的業務日誌量每天都是幾十個G),要麼用tail,要麼用more&less(下面會講)。

more&less

more介紹

Less is a program similar to more (1), but which allows backward movement in the file as well as forward movement. Also, less does not have to read the entire input file before starting, so with large input files it starts up faster than text editors like vi (1). Less uses termcap (or terminfo on some systems), so it can run on a variety of terminals. There is even limited support for hardcopy terminals. (On a hardcopy terminal, lines which should be printed at the top of the screen are prefixed with a caret.)

more每次開啟檔案不是全部把檔案讀入記憶體而是流式讀取,不會因為vi|vim某個大檔案而造成系統oom。

more&less最重要的一點就是流式讀取,支援翻頁,像cat命令是全部讀取輸出到標準輸出,如果檔案太大會把螢幕刷滿的,根本沒辦法看。

more引數格式

more [-dlfpcsu ] [-num ] [+/ pattern] [+ linenum] [file ... ]

more命令引數

+n 從笫n行開始顯示

-n 定義螢幕大小為n行

+/pattern 在每個檔案顯示前搜尋該字串(pattern),然後從該字串前兩行之後開始顯示

-c 從頂部清屏,然後顯示

-d 提示“Press space to continue,’q’ to quit(按空格鍵繼續,按q鍵退出)”,禁用響鈴功能

-l 忽略Ctrl+l(換頁)字元

-p 通過清除視窗而不是滾屏來對檔案進行換頁,與-c選項相似

-s 把連續的多個空行顯示為一行

-u 把檔案內容中的下畫線去掉

less 與 more 類似,但使用 less 可以隨意瀏覽檔案,而 more 僅能向前移動,卻不能向後移動,而且 less 在檢視之前不會載入整個檔案

wc

wc介紹

The wc utility displays the number of lines, words, and bytes contained in each input file, or standard input (if no file is specified) to the standard output. A line is defined as a string of characters delimited by a charac-ter. Characters beyond the final character will not be included in the line count.

wc實用程式顯示每個輸入檔案或標準輸入(如果未指定檔案)中每個輸入檔案中包含的行數,字數和位元組數。 一行定義為由字元分隔的字串。 最後一個字元之後的字元將不包括在行數中。

這條命令對我來說還是比較深刻的,我剛學習程式設計不久的時候,我感覺我寫的程式碼很多了,那個時候我就很想知道我寫了多少行程式碼了,一時興起,說幹就幹,直接寫了個程式去統計了一把,寫完之後還感覺自己蠻厲害的,誰知道之後學習到這個wc,然後就覺得自己還是嫩了點,還是要多學習。

wc引數格式

wc [-clmw] [file ...]

wc命令引數

-c 統計位元組數。

-l 統計行數。

-m 統計字元數。這個標誌不能與 -c 標誌一起使用。

-w 統計字數。一個字被定義為由空白、跳格或換行字元分隔的字串。

-L 列印最長行的長度。

常用引數示例

$ ls
test.txt

$ wc test.txt
      26      26     103 test.txt

$ wc -l test.txt  #直接一把統計行數
      26 test.txt

$ wc -c test.txt
     103 test.txt
複製程式碼

date & cal

date介紹

When invoked without arguments, the date utility displays the current date and time. Otherwise, depending on the options specified, date will set the date and time or print it in a user-defined way.

The date utility displays the date and time read from the kernel clock. When used to set the date and time, both the kernel clock and the hardware clock are updated.

Only the superuser may set the date, and if the system securelevel (see securelevel(7)) is greater than 1, the time may not be changed by more than 1 second.

當不帶引數呼叫時,date實用程式將顯示當前日期和時間。 否則,根據指定的選項,日期將設定日期和時間或以使用者定義的方式列印日期和時間。

date實用程式顯示從核心時鐘讀取的日期和時間。 當用於設定日期和時間時,核心時鐘和硬體時鐘都將更新。

只有超級使用者可以設定日期,並且如果系統安全級別(請參閱securelevel(7))大於1,則時間更改不得超過1秒。

date引數格式

date [-jRu] [-r seconds | filename] [-v [+|-]val[ymwdHMS]] ... [+output_fmt] date [-jnu] [[[mm]dd]HH]MM[[cc]yy][.ss] date [-jnRu] -f input_fmt new_date [+output_fmt] date [-d dst] [-t minutes_west]

date命令引數

%H 小時(以00-23來表示)。

%I 小時(以01-12來表示)。

%K 小時(以0-23來表示)。

%l 小時(以0-12來表示)。

%M 分鐘(以00-59來表示)。

%P AM或PM。

%r 時間(含時分秒,小時以12小時AM/PM來表示)。

%s 總秒數。起算時間為1970-01-01 00:00:00 UTC。

%S 秒(以本地的慣用法來表示)。

%T 時間(含時分秒,小時以24小時制來表示)。

%X 時間(以本地的慣用法來表示)。

%Z 市區。

%a 星期的縮寫。

%A 星期的完整名稱。

%b 月份英文名的縮寫。

%B 月份的完整英文名稱。

%c 日期與時間。只輸入date指令也會顯示同樣的結果。

%d 日期(以01-31來表示)。

%D 日期(含年月日)。

%j 該年中的第幾天。

%m 月份(以01-12來表示)。

%U 該年中的週數。

%w 該周的天數,0代表週日,1代表週一,異詞類推。

%x 日期(以本地的慣用法來表示)。

%y 年份(以00-99來表示)。

%Y 年份(以四位數來表示)。

%n 在顯示時,插入新的一行。

%t 在顯示時,插入tab。

MM 月份(必要)

DD 日期(必要)

hh 小時(必要)

mm 分鐘(必要)

ss 秒(選擇性)

-d<字串> 顯示字串所指的日期與時間。字串前後必須加上雙引號。

-s<字串> 根據字串來設定日期與時間。字串前後必須加上雙引號。

-u 顯示GMT。

常用引數示例

$ date
2019年12月22日 星期日 21時28分29秒 CST

$ date '+%c'
日 12/22 21:28:33 2019

$  date '+%D'
12/22/19

$  date '+%T'
21:28:50

$ date '+%X'
21時29分00秒
複製程式碼

cal介紹

cal命令可以用來顯示公曆(陽曆)日曆。

cal引數格式

cal [-3hjy] [-A number] [-B number] [[month] year] cal [-3hj] [-A number] [-B number] -m month [year] ncal [-3hjJpwy] [-A number] [-B number] [-s country_code] [[month] year] ncal [-3hJeo] [-A number] [-B number] [year] ncal [-CN] [-H yyyy-mm-dd] [-d yyyy-mm]

cal命令引數

-1 顯示一個月的月曆

-3 顯示系統前一個月,當前月,下一個月的月曆

-s 顯示星期天為一個星期的第一天,預設的格式

-m 顯示星期一為一個星期的第一天
-j 顯示在當年中的第幾天(一年日期按天算,從1月1號算起,預設顯示當前月在一年中的天數)
-y 顯示當前年份的日曆

cal常用引數示例

$ cal
      十二月 2019
日 一 二 三 四 五 六
 1  2  3  4  5  6  7
 8  9 10 11 12 13 14
15 16 17 18 19 20 21
22 23 24 25 26 27 28
29 30 31


$ ncal
    十二月 2019
一      2  9 16 23 30
二      3 10 17 24 31
三      4 11 18 25
四      5 12 19 26
五      6 13 20 27
六      7 14 21 28
日   1  8 15 22 29
複製程式碼

which

which介紹

The which utility takes a list of command names and searches the path for each executable file that would be run had these commands actually been invoked.

which命令的作用是,在PATH變數指定的路徑中,搜尋某個系統命令的位置,並且返回第一個搜尋結果。也就是說,使用which命令,就可以看到某個系統命令是否存在,以及執行的到底是哪一個位置的命令。

which引數格式

-n 指定檔名長度,指定的長度必須大於或等於所有檔案中最長的檔名。

-p 與-n引數相同,但此處的包括了檔案的路徑。

-w 指定輸出時欄位的寬度。

which常用引數示例

which ls
alias ls='ls --color=auto'
    /bin/ls

which which
alias which='alias | /usr/bin/which --tty-only --read-alias --show-dot --show-tilde'
    /bin/alias
    /usr/bin/which
複製程式碼

whereis

whereis介紹

whereis命令只能用於程式名的搜尋,而且只搜尋二進位制檔案(引數-b)、man說明檔案(引數-m)和原始碼檔案(引數-s)。如果省略引數,則返回所有資訊。

whereis引數格式

whereis [program ...]

whereis命令引數

-b 定位可執行檔案。

-m 定位幫助檔案。

-s 定位原始碼檔案。

-u 搜尋預設路徑下除可執行檔案、原始碼檔案、幫助檔案以外的其它檔案。

-B 指定搜尋可執行檔案的路徑。

-M 指定搜尋幫助檔案的路徑。

-S 指定搜尋原始碼檔案的路徑。

whereis常用引數示例

$ whereis ls
/bin/ls

$ whereis whereis
/usr/bin/whereis
複製程式碼

nl

nl介紹

nl命令在linux系統中用來計算檔案中行號。nl 可以將輸出的檔案內容自動的加上行號!其預設的結果與 cat -n 有點不太一樣, nl 可以將行號做比較多的顯示設計,包括位數與是否自動補齊 0 等等的功能。

nl引數格式

nl [-p] [-b type] [-d delim] [-f type] [-h type] [-i incr] [-l num] [-n format] [-s sep] [-v startnum] [-w width] [file]

nl命令引數

-b :指定行號指定的方式,主要有兩種:

-b a :表示不論是否為空行,也同樣列出行號(類似 cat -n);

-b t :如果有空行,空的那一行不要列出行號(預設值);

-n :列出行號表示的方法,主要有三種:

-n ln :行號在螢幕的最左方顯示;

-n rn :行號在自己欄位的最右方顯示,且不加 0 ;

-n rz :行號在自己欄位的最右方顯示,且加 0 ;

-w :行號欄位的佔用的位數。

-p 在邏輯定界符處不重新開始計算。

nl常用引數示例

$ nl test.txt
     1    用
     2    心
     3    分
     4    享,
     5    共
     6    同
     7    成
     8    長.

     9    沒
    10    有
    11    什
    12    麼
    13    比
    14    你
    15    每
    16    天
    17    進
    18    步
    19    一
    20    點
    21    更
    22    實
    23    在
    24    了
    25    .
複製程式碼

ps

ps介紹

The ps utility displays a header line, followed by lines containing information about all of your processes that have controlling terminals.

ps實用程式顯示標題行,其後是包含有關具有控制終端的所有程式的資訊的行。

ps引數格式

ps [-AaCcEefhjlMmrSTvwXx] [-O fmt | -o fmt] [-G gid[,gid...]] [-g grp[,grp...]] [-u uid[,uid...]] [-p pid[,pid...]] [-t tty[,tty...]] [-U user[,user...]] ps [-L]

ps命令引數

a 顯示所有程式

-a 顯示同一終端下的所有程式

-A 顯示所有程式

c 顯示程式的真實名稱

-N 反向選擇

-e 等於“-A”

e 顯示環境變數

f 顯示程式間的關係

-H 顯示樹狀結構

r 顯示當前終端的程式

T 顯示當前終端的所有程式

u 指定使用者的所有程式

-au 顯示較詳細的資訊

-aux 顯示所有包含其他使用者的行程

-C<命令> 列出指定命令的狀況

--lines<行數> 每頁顯示的行數

--width<字元數> 每頁顯示的字元數

ps常用引數示例

#檢視所有程式
$ps -a
#檢視程式的環境變數和程式間的關係
$ps -ef
複製程式碼

kill&killall

kill介紹

The command kill sends the specified signal to the specified process or process group. If no signal is specified, the TERM signal is sent. The TERM signal will kill processes which do not catch this signal. For other processes, it may be necessary to use the KILL (9) signal, since this signal cannot be caught.

命令kill將指定的訊號傳送到指定的程式或程式組。 如果未指定訊號,則傳送TERM訊號。 TERM訊號將殺死不捕獲該訊號的程式。 對於其他過程,可能需要使用KILL(9)訊號,因為無法捕獲該訊號。

kill引數格式

kill [-s signal|-p] [-q sigval] [-a] [--] pid...
kill -l [signal]
複製程式碼

kill命令引數

-l 訊號,若果不加訊號的編號引數,則使用“-l”引數會列出全部的訊號名稱

-a 當處理當前程式時,不限制命令名和程式號的對應關係

-p 指定kill 命令只列印相關程式的程式號,而不傳送任何訊號

-s 指定傳送訊號

-u 指定使用者

kill常用引數示例

#檢視當前系統訊號
kill -l
 1) SIGHUP     2) SIGINT   3) SIGQUIT  4) SIGILL   5) SIGTRAP
 6) SIGABRT     7) SIGBUS   8) SIGFPE   9) SIGKILL 10) SIGUSR1
11) SIGSEGV    12) SIGUSR2 13) SIGPIPE 14) SIGALRM 15) SIGTERM
16) SIGSTKFLT    17) SIGCHLD 18) SIGCONT 19) SIGSTOP 20) SIGTSTP
21) SIGTTIN    22) SIGTTOU 23) SIGURG  24) SIGXCPU 25) SIGXFSZ
26) SIGVTALRM    27) SIGPROF 28) SIGWINCH    29) SIGIO   30) SIGPWR
31) SIGSYS    34) SIGRTMIN    35) SIGRTMIN+1  36) SIGRTMIN+2  37) SIGRTMIN+3
38) SIGRTMIN+4    39) SIGRTMIN+5  40) SIGRTMIN+6  41) SIGRTMIN+7  42) SIGRTMIN+8
43) SIGRTMIN+9    44) SIGRTMIN+10 45) SIGRTMIN+11 46) SIGRTMIN+12 47) SIGRTMIN+13
48) SIGRTMIN+14    49) SIGRTMIN+15 50) SIGRTMAX-14 51) SIGRTMAX-13 52) SIGRTMAX-12
53) SIGRTMAX-11    54) SIGRTMAX-10 55) SIGRTMAX-9  56) SIGRTMAX-8  57) SIGRTMAX-7
58) SIGRTMAX-6    59) SIGRTMAX-5  60) SIGRTMAX-4  61) SIGRTMAX-3  62) SIGRTMAX-2
63) SIGRTMAX-1    64) SIGRTMAX
複製程式碼
解釋

HUP 1 終端斷線
INT 2 中斷(同 Ctrl + C)
QUIT 3 退出(同 Ctrl + \)
TERM 15 終止
KILL 9 強制終止
CONT 18 繼續(與STOP相反, fg/bg命令)
STOP 19 暫停(同 Ctrl + Z)

kill -9 是我們使用的最多的訊號,其實這種方式一點也不優雅,應該使用kill -15訊號,大部分程式接收到SIGTERM訊號後,會先釋放自己的資源,然後再停止。但是也有程式可能接收訊號後,做一些其他的事情(如果程式正在等待IO,可能就不會立馬做出響應,等到io完成後在結束),也就是說,SIGTERM多半是會被阻塞的。

講到這裡,linux基本指令差不多了夠用了,差不多可以上你的伺服器上隨便搞搞了。但是也只是簡單看看,更多的操作指令請看進階部分。


由於掘金長度要求,文章進階部分命令詳解 同步發在微信公眾號

微信搜尋 DC952721 或者掃描二維碼,即可訂閱。

qrcode_for_gh_c0c6a2272e93_258
qrcode_for_gh_c0c6a2272e93_258