标签:
cat myfile.txt, --将整个文件显示到屏幕上
cat myfile.txt > copy.txt, --定向
cat myfile.txt >>myanotherfile.txt, --追加
head 50 myfile.txt, --显示文件开头50行
tail 20 myfile.txt, --显示文件末尾20行
cat myfile.txt | less, --分页查看文件内容
less myfile.txt, --分页查看文本文件
标签:
原文地址:http://www.cnblogs.com/jason0401/p/5580541.html