6、linux的基本命令(3)

1、小的总结

目录管理:
ls、cd、pwd、mkdir、rmdir、tree

文件管理:
touch、stat、file、rm、cp、mv、vim

日期时间:
date	

查看文本:
cat、more、less、head、tail	

文本处理工具
cut sed awk

2、cat

      -n  显示行号
      -E 查看行结束符号     # 对于linux系统而言,文本文件的行结束符为$符号 

[root@localhost test2]# cat 1.c 
hello world

hello world


[root@localhost test2]# cat -n 1.c
     1	hello world
     2	
     3	hello world
     4	
[root@localhost test2]# cat -E 1.c
hello world$
$
hello world$
$


3、head

      -n   查看前n行  (默认查看前10行)

[root@localhost test2]# head -n3 1.c 
hello world

hello world
[root@localhost test2]# head -3 1.c 
hello world

hello world

4、tail

      - n  查看后n行  (默认查看后10行)

      - f   不退出,等待显示后续追加到这个文件的新内容  ###用于动态的查看日志后面的内容

[root@localhost test2]# tail -3  1.c 


hello world

[root@localhost test2]# tail -n3  1.c 


hello world



5、more  ,  less   

      -----分页显示文本的内容

[root@localhost test2]# more /etc/passwd
root:x:0:0:root:/root:/bin/bash
bin:x:1:1:bin:/bin:/sbin/nologin
daemon:x:2:2:daemon:/sbin:/sbin/nologin
adm:x:3:4:adm:/var/adm:/sbin/nologin
lp:x:4:7:lp:/var/spool/lpd:/sbin/nologin
sync:x:5:0:sync:/sbin:/bin/sync
shutdown:x:6:0:shutdown:/sbin:/sbin/shutdown

#可以在显示的时候,查找需要的内容
#查找:
/KEYWORD: 向后    #按下Enter按键
n: 下一个
N:前一个


你可能感兴趣的:(less,head,more,tail,linux下文本的查看)