介紹 cat命令經常會用來查看一個文件的內容,並且結合它本身的一些參數經常可以用來做一些特殊的內容處理。 參數 Usage: cat [OPTION]... [FILE]... Concatenate FILE(s), or standard input, to standard output. - ...
介紹
cat命令經常會用來查看一個文件的內容,並且結合它本身的一些參數經常可以用來做一些特殊的內容處理。
參數
Usage: cat [OPTION]... [FILE]... Concatenate FILE(s), or standard input, to standard output. -A, --show-all 等同於使用參數-vET -b, --number-nonblank 針對非空行顯示行號 -e 等同於使用參數 -vE -E, --show-ends 每行以$結尾-n, --number 每行都顯示行號 -s, --squeeze-blank 將連續的多個空行以顯示一個空行 -t 等同於使用參數 -vT -T, --show-tabs 製表符(tab)以^I符合代替 -u (ignored) -v, --show-nonprinting use ^ and M- notation, except for LFD and TAB --help display this help and exit --version output version information and exit With no FILE, or when FILE is -, read standard input. Examples: cat f - g Output f's contents, then standard input, then g's contents. cat Copy standard input to standard output.
1.查看多個文件內容
2.顯示行號
3.壓縮空行
4.不顯示空行
總結
備註: 作者:pursuer.chen 博客:http://www.cnblogs.com/chenmh 本站點所有隨筆都是原創,歡迎大家轉載;但轉載時必須註明文章來源,且在文章開頭明顯處給明鏈接。 《歡迎交流討論》 |