1:
cat file_full_name 这种方法适合查看小文件
cat /etc/services
cat -n file_full_name -n 可以加行号!
2:
tac file_full_name 这个命令与cat 差不多,cat 是从前向后看,tac是从后向前看!
3:
more file_full_name
4:
less file_full_name
5:
head -number file_full_name 显示前number 行
6:
tail -number file_full_name 显示结尾的number 行
7:
strings file_full_name 这个用来查看二进的同制文件
strings /bin/ls
时间: 2024-11-14 01:23:57