Linux 常用基本命令 cat grep
檢視或者合併檔案內容:cat
-n 或 --number 由 1 開始對所有輸出的行數編號
-b 或 --number-nonblank 和 -n 相似,只不過對於空白行不編號
-s 或 --squeeze-blank 當遇到有連續兩行以上的空白行,就代換為一行的空白行
1. 一次顯示整個檔案。$ cat filename。例:cat b.txt
2.將幾個檔案合併為一個檔案: $cat file1 file2 > file。 例:cat a.txt b.txt >a_b.txt
引數:
-n 或 --number 由 1 開始對所有輸出的行數編號
-b 或 --number-nonblank 和 -n 相似,只不過對於空白行不編號
-s 或 --squeeze-blank 當遇到有連續兩行以上的空白行,就代換為一行的空白行
-v 或 --show-nonprinting
文字搜尋:grep(global regular expression print 全域性正規表示式列印)
Linux 系統中的grep命令是一種強大的文字搜尋工具,grep允許對文字檔案進行模式查詢。如果找到匹配模式,grep列印包含模式的所有行。
grep 一般格式為:
grep [-選項] ‘搜尋內容串’ 檔名
在grep命令中輸入字串引數時候,最好引號或者雙引號括起來。例如: grep 'a' a.txt
grep 常用選項
grep 搜尋內容串可以是正規表示式。
正規表示式是對字串操作的一種邏輯公式,就是用事先定義好的一些特定字元,及這些特定字元的組合,組成一個規則字串,這個“規則字串”用來表達對字串的一種過濾邏輯。
相關文章
- Linux常用命令記錄-grepLinux
- Linux cat命令Linux
- 【Linux命令】grep命令Linux
- linux常用基本命令Linux
- linux之cat命令Linux
- aix基本命令之grepAI
- linux每日命令(11):cat命令Linux
- 常用命令 ---tail-catAI
- Linux grep 命令Linux
- 【Linux】grep命令Linux
- Linux基本命令學習之三:cat tac nl moreLinux
- linux中強大且常用命令:find、grepLinux
- Linux命令篇 - grep 命令Linux
- Linux 常用基本命令 lnLinux
- linux 常用基本命令 cdLinux
- Linux 常用基本命令 -lsLinux
- Linux常用基本命令(more)Linux
- Linux常用基本命令[cp]Linux
- Linux 常用基本命令 findLinux
- Linux基礎命令—catLinux
- Linux基礎命令---catLinux
- linux中grep基本用法Linux
- 【Linux】Linux基本常用命令Linux
- 15個Linux Grep命令使用例項(實用、常用)Linux
- linux命令之grepLinux
- linux每日命令(35):grep命令Linux
- Linux命令:grep命令AND、OR、NOT例項Linux
- Linux 常用檢視日誌命令 tail、head、cat、more、lessLinuxAI
- Linux的常用基本命令(二)Linux
- Linux 常用基本命令 rmdir rmLinux
- Linux 常用基本命令 pwd mkdirLinux
- Linux 常用基本命令 重定向Linux
- Linux常用基本命令( ls, alias)Linux
- Linux常用的基本命令11Linux
- Linux 常用基本命令 cp mvLinux
- Linux基礎命令---grepLinux
- Linux grep命令的使用Linux
- linux grep命令詳解Linux