标签:移动 log table script bit 路径 重启 div 启动
1.使用file命令查看文件中数据的类型
[oracle@linuxforlijiaman Desktop]$ ls linux oracle.txt test.png [oracle@linuxforlijiaman Desktop]$ ls -F #查看桌面文件 linux/ oracle.txt* test.png [oracle@linuxforlijiaman Desktop]$ file linux/ #确定linux文件是路径 linux/: directory [oracle@linuxforlijiaman Desktop]$ file oracle.txt #确定oracle.txt是可执行的shell脚本 oracle.txt: Bourne-Again shell script text executable [oracle@linuxforlijiaman 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文件信息
[oracle@linuxforlijiaman Desktop]$ wc oracle.txt 33 92 897 oracle.txt #33行,92个单词,897个字符
6.用more命令浏览大文件
语法为:
more file
标签:移动 log table script bit 路径 重启 div 启动
原文地址:http://www.cnblogs.com/lijiaman/p/6528465.html