[Linux]文件浏览
Posted 满格
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[Linux]文件浏览相关的知识,希望对你有一定的参考价值。
1.使用file命令查看文件中数据的类型
[[email protected] Desktop]$ ls linux oracle.txt test.png [[email protected] Desktop]$ ls -F #查看桌面文件 linux/ oracle.txt* test.png [[email protected] Desktop]$ file linux/ #确定linux文件是路径 linux/: directory [[email protected] Desktop]$ file oracle.txt #确定oracle.txt是可执行的shell脚本 oracle.txt: Bourne-Again shell script text executable [[email protected] Desktop]$ file test.png #确定test.png是图片 test.png: PNG image data, 979 x 768, 8-bit/color RGB, non-interlaced
2.用cat命令浏览正文
如果一个文件是正文文件,就可以使用cat命令查看
cat [option] [files]
不能使用cat买了来查看二进制文件,否则会造成终端窗口突然停止,这时只需关闭重启一个窗口即可。
3.用head命令查看文件前几行
如果用户并不关心整个文件,只是关心文件的前几行,可以使用head命令查看
head [-n | --line] number /directory/file #默认显示前10行,可通过number调节行数
4.用tail命令显示文件最后几行
如果用户只关心文件的最后几行,使用tail命令
tail [-n | --line] number /directory/file
5.用wc(word count)命令显示文件行数,单词,字符数
wc file
例如.查看/home/oracle/Desktop/oracle.txt文件信息
[[email protected] Desktop]$ wc oracle.txt 33 92 897 oracle.txt #33行,92个单词,897个字符
6.用more命令浏览大文件
语法为:
more file
- 空格键:向下移动一页;
- b键:向上移动一页;
- enter键:一次向下移动一行;
- h:显示帮助菜单;
- n:发现这个字符串的下一次出现
- /字符串:向前搜索这个字符串;
- v:启动vi编辑器;
- q:推出more命令
以上是关于[Linux]文件浏览的主要内容,如果未能解决你的问题,请参考以下文章