cat命令用于查看文件的内容。
cat
cat [option...] [FILE...]
查看一个或多个文件的内容。
示例:
cat xx.txt cat xx.txt yy.js
展示行号。
echo "a b c\nd e f g" | cat -n
运行效果如下: