1.概述
Cat通常用于查看文件內(nèi)容。
2.顯示文件內(nèi)容(顯示字符)
cat -A 顯示文件內(nèi)容,包括結(jié)束符、TAB。其中結(jié)束符以$顯示,TAB以^I顯示,空格不顯示。
[root@smart Desktop]# cat AUTHOR Written by Richard M. Stallman and David MacKenzie. [root@smart Desktop]# cat -A AUTHOR$ ^IWritten by Richard M. Stallman and David MacKenzie.$ $3.顯示行號(hào)
cat -b 顯示非空行行號(hào)
cat -n 顯示所有行行號(hào)
[root@smart Desktop]# cat -b 1 AUTHOR 2 Written by Richard M. Stallman and David MacKenzie. 3 REPORTING BUGS 4 Report ls bugs to bug-coreutils@gnu.org 5 GNU coreutils home page: <; 6 General help using GNU software: <; 7 Report ls translation bugs to <; [root@smart Desktop]# cat -n 1 AUTHOR 2 Written by Richard M. Stallman and David MacKenzie. 3 4 REPORTING BUGS 5 Report ls bugs to bug-coreutils@gnu.org 6 GNU coreutils home page: <; 7 General help using GNU software: <; 8 Report ls translation bugs to <;4.顯示特殊字符
cat -E ,以$顯示結(jié)束符,此時(shí)不會(huì)顯示TAB字符。
cat -T,以^I顯示TAB字符。
[root@smart Desktop]# cat -E AUTHOR$ Written by Richard M. Stallman and David MacKenzie.$ [root@smart Desktop]# cat -T AUTHOR ^IWritten by Richard M. Stallman and David MacKenzie.Enjoy!
2017/11/9
1.《.cat文件如何打開(kāi)?總結(jié)很全面速看!深入解析Linux常用命令(五)——cat》援引自互聯(lián)網(wǎng),旨在傳遞更多網(wǎng)絡(luò)信息知識(shí),僅代表作者本人觀點(diǎn),與本網(wǎng)站無(wú)關(guān),侵刪請(qǐng)聯(lián)系頁(yè)腳下方聯(lián)系方式。
2.《.cat文件如何打開(kāi)?總結(jié)很全面速看!深入解析Linux常用命令(五)——cat》僅供讀者參考,本網(wǎng)站未對(duì)該內(nèi)容進(jìn)行證實(shí),對(duì)其原創(chuàng)性、真實(shí)性、完整性、及時(shí)性不作任何保證。
3.文章轉(zhuǎn)載時(shí)請(qǐng)保留本站內(nèi)容來(lái)源地址,http://f99ss.com/gl/2254823.html