Chapter 7 文本查看
7.1 cat & tac
cat 输出文件的所有内容,不能修改,比较安全
-n:显示行号
-A:显示控制字符(换行符/制表符)
cat /etc/profile | more
Windows记事本修改过的文档会把换行符$
变成^M$
,linux下可以使用dos2unix
改回来
yum -y install dos2unix
dos2unix test.txt
- tac 反向输出文件所有内容
7.2 head & tail
head file:查看前10行
head -5 file:查看前5行(head -n 5 file)
tail file:默认查看后10行
tail -3 file:查看后3行
tail -f file:实时追踪文档尾部(tail -f)
tailf file:It is similar to tail -f but does not access the file when it is not growing