当前位置: > CentOS > CentOS入门 >

CentOS文件内容查阅命令(cat、tac、nl、more、less、head、tail、touch)

时间:2015-08-08 20:54来源:linux.it.net.cn 作者:IT

文件内容查阅

cat:由第一行开始显示文件内容

tac:由最后一行开始显示文件内容

nl:显示的时候,顺便输出行号

more:一页一页的显示文件内容

less:与more类似,但是它可以往前翻页

head:只看头几行

tail:只看结尾几行

touch:文件创建与文件时间修改

 

cat(concatenate)

语法:cat [-AbEnTv]

选项与参数:

-A:相当于-vET的整合参数

-b:列出行号,仅针对非空白行做行号显示

-n:输出行号,空白与非空白都会列出

-E:将结尾的断行字符¥显示出来

-v:列出一些看不出的特殊字符

-T:将Tab按键以∧I显示出来

 

举例:

 
  1. [root@localhost tmp]# cat /etc/issue  
  2. CentOS release 5.10 (Final)  
  3. Kernel \r on an \m  
  4.   
  5. [root@localhost tmp]# cat -n /etc/issue  
  6.      1  CentOS release 5.10 (Final)  
  7.      2  Kernel \r on an \m  
  8.      3  
  9. [root@localhost tmp]# cat -A /etc/issue  
  10. CentOS release 5.10 (Final)$  
  11. Kernel \r on an \m$  
  12. $  


 

nl:添加行号与打印

语法 :[root@www ~]# nl [-bnw] 文件

选项与参数:

-b:指定行号指定的方式,主要有两种:

     -b a :表示不论是否为空行,也同样列出行号(类似 cat -n);

     -b t :如果有空行,空的那一行不要列出行号(默认值);

-n:列出行号表示的方法,主要有三种:

     -n ln :行号在萤幕的最左方显示;

     -n rn :行号在自己栏位的最右方显示,且不加 0 ;

     -n rz :行号在自己栏位的最右方显示,且加 0 ;

-w:行号栏位的占用的位数。

 

举例

 
  1.  [root@www ~]# nl /etc/issue  
  2.      1  CentOS release 5.3 (Final)  
  3.      2  Kernel \r on an \m  
  4.   
  5. 这个文件其实有三行,第三行为空白(没有任何字节),  
  6. 因为他是空白行,所以 nl 不会加上行号喔  
  7.   
  8. [root@www ~]# nl -b a /etc/issue  
  9.      1  CentOS release 5.3 (Final)  
  10.      2  Kernel \r on an \m  
  11.      3  
  12. [root@www ~]# nl -b a -n rz /etc/issue  
  13. 000001  CentOS release 5.3 (Final)  
  14. 000002  Kernel \r on an \m  
  15. 000003  
  16. 自动在自己栏位的地方补上 0 了~默认栏位是六位数,如果想要改成 3 位数?  
  17. [root@www ~]# nl -b a -n rz -w 3 /etc/issue  
  18. 001     CentOS release 5.3 (Final)  
  19. 002     Kernel \r on an \m  
  20. 003  

 

More:

空白键 (space):代表向下翻一页;

Enter        :代表向下翻『一行』;

/字串        :代表在这个显示的内容当中,向下搜寻『字串』这个关键字;

:f           :立刻显示出档名以及目前显示的行数;

q            :代表立刻离开 more ,不再显示该文件内容。

b 或 [ctrl]-b :代表往回翻页,不过这动作只对文件有用,对管线无用。

 

Less:

空白键    :向下翻动一页;

[pagedown]:向下翻动一页;

[pageup]  :向上翻动一页;

/字串     :向下搜寻『字串』的功能;

?字串     :向上搜寻『字串』的功能;

n        :重复前一个搜寻 (与 / 或 ? 有关!)

N        :反向的重复前一个搜寻 (与 / 或 ? 有关!)

q        :离开 less 这个程序;


 

举例:

 
  1. [root@localhost tmp]# more /etc/man.config   
  2. #  
  3. # Generated automatically from man.conf.in by the  
  4. ……..  
  5. # and to determine the correspondence between extensions and decompressors.  
  6. #  
  7. # MANBIN                /usr/local/bin/man  
  8. #  
  9. --More--(31%)  


 

head:取出前面几行

语法:head [-nnumber] 文件

选项与参数:

-n:后面接数字,代表行数

number默认值是10 当number是负数,代表列出前面所有行数但是不包括后面number行

 

tail:取出后面几行

语法:tail [-nnumber] 文件

选项与参数:

-n:后面接数字,代表行数

number默认值是10 当number是正数(+ number),代表该文件从number以后才会列出来

 

touch:修改文件时间|创建新文件

时间属性

Mtime(modificationtime):当文件内容数据更改时就会更新这个时间,内容数据指的是文件的内容,不包括文件的权限和属性

Ctime(Statetime):当文件的状态(权限和属性)更改时会更新这个时间

Atime(accesstime):当文件内容被取用就会修改这个时间

举例

 
  1. [root@localhost ~]# ls -l --time-style=long-iso  /etc/man.config 默认是修改mtime  
  2. -rw-r--r-- 1 root root 4617 2012-05-30 20:34 /etc/man.config  
  3. [root@localhost ~]# ls -l --time=ctime --time-style=long-iso  /etc/man.config  
  4. -rw-r--r-- 1 root root 4617 2014-02-14 10:06 /etc/man.config  
  5. [root@localhost ~]# ls -l --time=atime --time-style=long-iso  /etc/man.config  
  6. -rw-r--r-- 1 root root 4617 2014-02-21 10:19 /etc/man.config  

语法:touch[-acdmt] 文件

选项与参数:

-a:仅修改访问时间 atime

-c:仅修改文件的时间,若该文件不存在则不创建新文件

-d:后面可接欲修改的日期,也可以使用—date=”时间或日期”

-m:仅修改mtime

-t:后面可以接欲修改的时间 

 

主要功能:

创建一个空文件

修改文件日期(mtime,atime)

举例:

 
  1. [root@localhost tmp]# cp -a /etc/man.config ./newman.config  
  2. [root@localhost tmp]# ls -l --time-style=long-iso  newman.config 指定时间格式  
  3. -rw-r--r-- 1 root root 4617 2012-05-30 20:34 newman.config  
  4. [root@localhost tmp]# touch -m -t 0709150203  newman.config //只修改mtime  
  5. [root@localhost tmp]# ls -l --time-style=long-iso  newman.config  
  6. -rw-r--r-- 1 root root 4617 2007-09-15 02:03 newman.config  
  7.  [root@localhost tmp]# ls -l --time=atime --time-style=long-iso  newman.config //只修改atime  
  8. -rw-r--r-- 1 root root 4617 2014-02-21 10:33 newman.config  
  9. [root@localhost tmp]# touch -a -t 0809150203  newman.config   
  10.  [root@localhost tmp]# ls -l --time=atime --time-style=long-iso  newman.config  
  11. -rw-r--r-- 1 root root 4617 2008-09-15 02:03 newman.config  
  12. [root@localhost tmp]#   
  13. [root@localhost tmp]# touch -d "2 days ago"  newman.config //默认修改atime 与 mtime  
  14. [root@localhost tmp]# ls -l --time=atime --time-style=long-iso  newman.config  
  15. -rw-r--r-- 1 root root 4617 2014-02-19 10:36 newman.config  
  16. [root@localhost tmp]# ls -l  --time-style=long-iso  newman.config  
  17. -rw-r--r-- 1 root root 4617 2014-02-19 10:36 newman.config  


(责任编辑:IT)
------分隔线----------------------------
栏目列表
推荐内容