linux文件查看命令集

cat 由第一行开始显示文件内容
tac
从最后一行开始显示
nl
显示同时输出行号
more
一页一页的显示内容
less
more 类似,但其优点是,可以往前翻页
head
只看头几行
tail
只看未尾几行
od
以二进制的方式读取文件内容

cat[-n]
-n
连行号一起输出到屏幕上 nl 相似

more[
文件名 ]
more test.txt
test.txt 一页一页的显示出来
ls -al | more
ls 显示的内容一页页显示出来

less[
文件名 ]
less
的用法比 more 更有弹性,使用 less 可以用 pageup pagedown 翻看
less test.txt
/word
test.txt 中搜寻 word 这个字符串
q
:退出 less

head[-n number] [
文件名 ]
-n
显示 number
head -n 20 test.txt
显示 test.txt 20

tail [-n number] [
文件名 ]
-n
显示 number

tail -n 20 test.txt
显示 test.txt 20


head -n 20 test.txt | tail -n 10
11-20

你可能感兴趣的:(linux文件查看命令集)