简介
cat命令常用来显示文件的内容。
命令格式
cat [option] [file]
使用实例
输出文件内容
cat test.log
输出文件内容 并显示行号
cat -n test.log
输出文件内容 并显示行号 不对空白行编号
cat -b test.log
输出文件内容 在行尾显示$
cat -e test.log
创建新的文件
cat > test.log
将文件1追加到文件2中 会覆盖文件2中原内容
cat test1.log > test2.log
将文件1追加到文件2中 在末尾追加不会覆盖
cat test1.log >> test2.log
网友评论