查看/etc/hosts文件内容,将文件内容打印到屏幕上
tc@box:~$ cat /etc/hosts
分屏显示tc-config文件内容,回车将会继续,q将停止退出more
tc@box:~$ more /etc/init.d/tc-config
显示文件前10行
tc@box:~$ head /etc/init.d/tc-config
显示文件后10行
tc@box:~$ tail /etc/init.d/tc-config
查看hosts和hostname两个文件的内容区别
tc@box:~$ diff /etc/hosts /etc/hostname
查找并打印hosts文件中出现localhost字符串的行
tc@box:~$ grep localhost /etc/hosts
通过管道把history命令的输出传递给grep命令,即查找已执行命令中出现cat的行
tc@box:~$ history | grep 'cat'
查找已执行命令中出现cat的行并把这些内容保存到cat.txt文件
tc@box:~$ history | grep cat>cat.txt
显示cat.txt文件内容
tc@box:~$ cat cat.txt