拼接多个数据文件
cat file.txt file.txt
将输入文件的内容与标准输入拼接一起 ###
echo “this is a test”| cat - file.txt
其中*-*被作为来自stdin文本的文件
2016-10-27