簡介
cat命令常用來顯示文件的內(nèi)容。
命令格式
cat [option] [file]
使用實(shí)例
輸出文件內(nèi)容
cat test.log
輸出文件內(nèi)容 并顯示行號
cat -n test.log
輸出文件內(nèi)容 并顯示行號 不對空白行編號
cat -b test.log
輸出文件內(nèi)容 在行尾顯示$
cat -e test.log
創(chuàng)建新的文件
cat > test.log
將文件1追加到文件2中 會(huì)覆蓋文件2中原內(nèi)容
cat test1.log > test2.log
將文件1追加到文件2中 在末尾追加不會(huì)覆蓋
cat test1.log >> test2.log