十個比較有用的linux命令

今天在知乎上看到的十個有用的linux命令,如下爲原文分享:linux

 

如下就是今天咱們要介紹的Linux命令:正則表達式

 man
 touch, cat and less
 sort and grep
 cut
 sed
 tar
 find
 diff
 uniq
 chmod

接下來讓咱們逐一來詳細介紹。ubuntu

一、man命令

第一個你須要知道的Linux命令就是man命令,該命令能夠顯示指定命令的用法和描述。好比你想知道ls命令的用法和選項,能夠在終端執行「man ls」:bash

語法: man <command name>
man ls
root@devopscube:~# man ls
LS(1)                            User Commands                           LS(1)
NAME
       ls - list directory contents
SYNOPSIS
       ls [OPTION]... [FILE]...
DESCRIPTION
       List  information  about  the FILEs (the current directory by default).
       Sort entries alphabetically if none of -cftuvSUX nor --sort  is  speciâ
       fied.
       Mandatory  arguments  to  long  options are mandatory for short options
       too.
       -a, --all
              do not ignore entries starting with .

二、touch,cat和less命令

touch命令能夠在Linux系統中建立大小爲0的任意類型文件,做爲程序開發者,當你須要在Linux服務器上建立文件時,可使用touch命令:服務器

語法: touch <filename>
touch demo.txt

root@devopscube:~# touch demo.txt
root@devopscube:~# ls
demo.txt

cat命令用來查看文件的內容,可是使用cat命令並不能編輯文件的內容,它僅僅是能夠瀏覽文件內容。cat命令不支持鍵盤上下鍵翻頁。app

語法: cat <filename>
cat demo.txt

一樣的less命令也可讓你瀏覽文件,less命令很是快,而且支持上下鍵查看文件的開頭和末尾。然而more命令和它相似,只是more命令只能用enter鍵實現文件的向前翻頁,不支持回退。less

語法: less <filename>
        more <filename>
less demo.txt
more demo.txt

三、sort和grep命令

sort命令用來對文件內容進行排序。建立一個名爲test.txt的文件,而且把如下內容拷貝到該文件中:編輯器

1 mike level intermediate jan
10 lucy level beginer mar
45 Dave level expert dec
4 dennis start beginner jul
7 Megan employee trainee feb
58 Mathew Head CEO nov

上面的例子中,第二列是名稱,因此若是你想對名稱列按字母排序,就可使用「-k」選項,並標註列號,好比「-k2」:ide

語法: sort

sort -k2 test.txt

排序結果spa

root@devopscube:~# sort -k2 test.txt
45 Dave level expert dec
4 dennis start beginner jul
10 lucy level beginer mar
58 Mathew Head CEO nov
7 Megan employee trainee feb
1 mike level intermediate jan

第一列是數字,若是你想按數字排序,可使用「-h」選項。若是數字在不一樣列上,你能夠在「-h」選項後使用「-k」選項:

root@devopscube:~# sort -h test.txt  
1 mike level intermediate jan
4 dennis start beginner jul
7 Megan employee trainee feb
10 lucy level beginer mar
45 Dave level expert dec
58 Mathew Head CEO nov

最後一列是月份,你可使用「-M」選項來讓文件內容按月份排序:

root@devopscube:~# sort -k5 -M test.txt
1 mike level intermediate jan
7 Megan employee trainee feb
10 lucy level beginer mar
4 dennis start beginner jul
58 Mathew Head CEO nov
45 Dave level expert dec

注:若是你想消除重複的行,能夠在sort命令後使用「-u」選項。

使用「-r」選項,是文件倒序排列:

root@devopscube:~# sort -h -r test.txt
58 Mathew Head CEO nov
45 Dave level expert dec
10 lucy level beginer mar
7 Megan employee trainee feb
4 dennis start beginner jul
1 mike level intermediate jan

Grep命令:

Grep命令很是強大,系統管理員常常會用到它。grep命令能夠在文件中搜索指定格式的字符串,同時對其進行標準輸出。

語法: grep "<search string>" <filename> 
        grep "Mathew" test.txt
root@devopscube:~# grep "dennis" test.txt
4 dennis start beginner jul

上面命令的輸出結果是包含該子字符串的,若是你想檢索完整的單詞,你須要添加「-i」選項。同時,也能夠用grep命令在多個文件中搜索字符串,命令代碼以下:

grep "dennis" test1.txt test2.txt test3.txt

固然你也能夠用正則表達式來匹配字符串。

四、cut命令

cut命令可讓你用列或者分隔符提取文件中的指定部分。若是你要列出文件中某列的所有內容,可使用「-c」選項。例如,下面將從test.txt文件中提取第一、2列的所有內容。

cut -c1-2 test.txt
root@devopscube:~# cut -c1-2 test.txt
1
10
45
4
7
58

若是你但願從文件中提取指定的字符串,那麼你可使用分隔符選項「-d」和「-f」選項選中列。例如,咱們能夠利用cut命令提取names列:

cut -d' ' -f2 test.txt
root@devopscube:~# cut -d' ' -f2 test.txt
mike
lucy
Dave
dennis
Megan
Mathew

下面的例子從/etc/passd file中提取users列:

cut -d':' -f1 /etc/passwd

五、sed命令

sed 是一種在線編輯器,它一次處理一行內容。處理時,把當前處理的行存儲在臨時緩衝區中,稱爲「模式空間」(pattern space),接着用sed命令處理緩衝區中的內容,處理完成後,把緩衝區的內容送往屏幕。接着處理下一行,這樣不斷重複,直到文件末尾。文件內容並無 改變,除非你使用重定向存儲輸出。

若是你想經過搜索替換文件中的指定內容,你可使用「s」選項來檢索到它而後將它替換。

語法: sed 's/<old-word>/<new-word>/' test.txt

例如,在test.txt文件中用「michael」替換「mike」:

sed 's/mike/michael/' test.txt
root@devopscube:~# sed 's/mike/michael/' test.txt
1 michael level intermediate jan
10 lucy level beginer mar
45 Dave level expert dec
4 dennis start beginner jul
7 Megan employee trainee feb
58 Mathew Head CEO nov

六、tar命令

tar命令用來壓縮和解壓縮文件,其中常常會用到「-cf」和「-xf」選項。

語法: tar <options> <archive-name> <file/folder name>

讓咱們將test.txt文件打包:

tar -cf test.tar test.txt
root@devopscube:~# tar -cf test.tar test.txt
root@devopscube:~# ls
test.tar  test.txt

用「-C」選項將剛纔打包好的test.tar文件解壓縮至「demo」目錄:

tar -xf test.tar -C /root/demo/
root@devopscube:~# tar -xf test.tar -C /root/demo/
root@devopscube:~# cd demo/
root@devopscube:~/demo# ls
test.txt

七、find命令

find命令用來檢索文件,能夠用「-name」選項來檢索指定名稱的文件:

find -name  find -name test.txt
root@devopscube:/home/ubuntu# cd ~
root@devopscube:~# find -name test.txt
./demo/test.txt
./test.txt

你也能夠用「/ -name」來檢索指定名稱的文件夾:

find / -name passwd
root@devopscube:~# find / -name passwd
/etc/cron.daily/passwd
/etc/pam.d/passwd
/etc/passwd
/usr/share/lintian/overrides/passwd

八、diff命令

diff命令用來找出2個文件的不一樣點。diff命令經過分析文件內容,而後將不一樣的行打印出來,下面的例子能夠找出兩個文件test和test1的不一樣點:

語法: diff <filename1> <filename2>
        diff test.txt test1.txt
root@devopscube:~# diff test.txt test1.txt
7c7
< 59 sdfsd
---
> 59 sdfsd  CTO dec

九、Uniq命令

uniq命令用來過濾文件中的重複行:

語法: uniq 
uniq test.txt
root@devopscube:~# uniq test.txt
1 mike level intermediate jan
10 lucy level beginer mar
45 Dave level expert dec
4 dennis start beginner jul
7 Megan employee trainee feb
58 Mathew Head CEO nov

十、chmod命令

chmod命令用來改變文件的讀/寫/執行權限,權限數值以下所示:

4 - read permission
2 - write permission
1 - execute permission
0 - no permission

下面的命令能夠給test.txt文件賦最高的權限:

chmod 755 test.txt

若是你對本文有任何的想法和意見,歡迎給出你的點評,我很期待!

相關文章
相關標籤/搜索