美文网首页
linux常用命令行(2)

linux常用命令行(2)

作者: 迷恋那只小猪 | 来源:发表于2017-01-24 15:58 被阅读0次
    • diff
    作用:比较两个文件,显示区别
    用法:
    diff file1 file2 :比较file1 和file2,显示区别
    diff file1 file2 > patch.log:比较file1 和file2,并生成区别log
    diff dir1 dir2 : 比较dir1目录和dir2目录及其子目录下所有相同文件名的文件,并显示区别
    

    example :

    root@xie-vm:/home/xie# cat aaa.txt 
    abc
    def
    hig
    klm
    root@xie-vm:/home/xie# cat ccc.log 
    123
    abc
    def
    456
    root@xie-vm:/home/xie# diff aaa.txt ccc.log 
    0a1
    > 123
    3,4c4
    < hig
    < klm
    ---
    > 456
    root@xie-vm:/home/xie# diff ccc.log aaa.txt 
    1d0
    < 123
    4c3,4
    < 456
    ---
    > hig
    > klm
    root@xie-vm:/home/xie# diff aaa.txt ccc.log > patch.log
    root@xie-vm:/home/xie# cat patch.log 
    0a1
    > 123
    3,4c4
    < hig
    < klm
    ---
    > 456
    

    解释:

    diff比较有三种结果,分别是***a***、***c***和***d***,它们分别表示add、change和delete。
    如,diff aaa.txt ccc.log命令结果中,“0a1”表示ccc.log比aaa.txt第一行多一行(“>123” ); “3,4c4”表示aaa.txt的第3,4行与ccc.log的第4行不同;其中,“<”指示的行属于前一个文件,“>”指示的行属于后一个文件。
    再如,diff ccc.log aaa.txt命令结果中, “1d0”表示aaa.txt比ccc.log第一行少一行。
    

    • du
    作用:显示文件使用的磁盘空间量
    用法:
    du -h file/dir: 以人类可读的方式显示file或者dir目录及其子目录所占磁盘空间大小;
    du -ah dir :不仅显示dir目录及其子目录所占磁盘空间大小,还显示dir目录内所有文件所占磁盘空间大小。
    du -sh dir :只显示dir目录所占 磁盘空间大小。
    du -d n : 按深度显示,n表示需要显示的深度
    

    example:

    root@xie-vm:/home/xie# du -h aaa.txt 
    4.0K    aaa.txt
    root@xie-vm:/home/xie# du -h test
    12K  test/test1
    24K  test
    root@xie-vm:/home/xie# du -ah test
    4.0K    test/test1/ccc.log
    4.0K    test/test1/bbb.log
    12K  test/test1
    4.0K    test/aaa.txt
    4.0K    test/ccc.log
    24K  test
    root@xie-vm:/home/xie# du -hs test
    24K test
    root@xie-vm:/home/xie/test# du -hd 1
    16K ./test1
    4.0K    ./test2
    32K .
    root@xie-vm:/home/xie/test# du -hd 2
    4.0K    ./test1/test11
    16K ./test1
    4.0K    ./test2
    32K .
    

    • pwd
    作用:显示工作目录的路径名
    用法:
    pwd : 显示当前工作目录的路径名
    

    example

    root@xie-vm:/home/xie# pwd
    /home/xie
    

    • tree
    作用:显示目录树的图表
    用法:
    tree -d dir:只显示dir目录名称,而不显示内容
    tree -a dir:只显示dir目录名称和内容
    tree -p dir:只显示dir目录名称和内容,同时显示权限
    

    example

    root@xie-vm:/home/xie# tree -d test
    test
    └── test1
    
    1 directory
    root@xie-vm:/home/xie# tree -a test
    test
    ├── aaa.txt
    ├── ccc.log
    └── test1
        ├── bbb.log
        └── ccc.log
    
    1 directory, 4 files
    root@xie-vm:/home/xie# tree -p test
    test
    ├── [-rw-r--r--]  aaa.txt
    ├── [-rw-r--r--]  ccc.log
    └── [drwxr-xr-x]  test1
        ├── [-rw-r--r--]  bbb.log
        └── [-rw-r--r--]  ccc.log
    
    1 directory, 4 files
    

    • echo
    作用:将参数写到标准输出
    用法:
    echo parm : 将参数parm写到标准输出
    echo parm > file : 将参数parm写到file文件中
    

    example

    root@xie-vm:/home/xie# echo test_echo
    test_echo
    root@xie-vm:/home/xie# echo test_echo > echo.txt
    root@xie-vm:/home/xie# cat echo.txt 
    test_echo
    

    • head
    作用:从数据的开头选择行
    用法:
    head file : 显示file,默认显示从头开始的10行
    head -n num file : 显示file,从头开始的num行
    head -n -num file : 显示file,去掉后面num行外的所有行
    

    example

    root@xie-vm:/home/xie# cat abc.log 
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    root@xie-vm:/home/xie# head abc.log 
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10 
    root@xie-vm:/home/xie# head -n 5 abc.log 
    1
    2
    3
    4
    5
    root@xie-vm:/home/xie# head -n -5 abc.log 
    1
    2
    3
    4
    5
    6
    7
    8
    

    • tail
    作用:在数据的末尾选择行
    用法:
    tail file : 显示file,默认显示从尾开始的10行
    tail -n num file : 显示file,从尾开始的num行
    head -n +num file : 显示file,去掉开头num行外的所有行
    

    example

    root@xie-vm:/home/xie# tail abc.log 
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    root@xie-vm:/home/xie# tail -n 5 abc.log 
    9
    10
    11
    12
    13
    root@xie-vm:/home/xie# tail -n +5 abc.log 
    5
    6
    7
    8
    9
    10
    11
    12
    13
    

    • vim
    作用:vim文本编辑器
    用法:
    vim file:用vim文本编辑器打开file文件,如果file不存在,保存后会新建该文件
    

    • &
    作用:在后台挂起程序
    用法:
    exe1 &:将exe1程序在后台执行
    

    example

    root@xie-vm:/home/xie# ping 192.168.204.35 &
    [1] 4802
    root@xie-vm:/home/xie# ps -e | grep ping
      4802 pts/1    00:00:00 ping
    

    • ^z
    作用:挂起(暂停)前台程序
    用法:
    Ctrl + z:将当前程序挂起,并转为后台
    

    example

    root@xie-vm:/home/xie# ping 192.168.204.35
    PING 192.168.204.35 (192.168.204.35) 56(84) bytes of data.
    64 bytes from 192.168.204.35: icmp_seq=1 ttl=128 time=0.776 ms
    64 bytes from 192.168.204.35: icmp_seq=2 ttl=128 time=1.16 ms
    64 bytes from 192.168.204.35: icmp_seq=3 ttl=128 time=1.16 ms
    ^Z
    [1]+  Stopped                 ping 192.168.204.35
    root@xie-vm:/home/xie# ps -e | grep ping
      4777 pts/1    00:00:00 ping
    

    • fg
    作用:将作业移到前台
    用法:
    fg :将后台挂起的最后一个任务移到前台
    fg %n:将后台挂起的第n个任务移到前台
    
    root@xie-vm:/home/xie# fg %1
    ping 192.168.204.35
    64 bytes from 192.168.204.35: icmp_seq=10 ttl=128 time=0.496 ms
    64 bytes from 192.168.204.35: icmp_seq=11 ttl=128 time=1.50 ms
    

    • jobs
    作用:显示作业信息
    用法:
    jobs : 显示当前挂起暂停的作用
    

    example:

    root@xie-vm:/home/xie# jobs
    [1]+  Stopped                 ping 192.168.204.35
    

    • bg
    作用:将作业移至后台
    用法:
    bg :将最后一个任务移到后台运行
    bg %n:将第n个任务移到后台运行
    

    example:

    root@xie-vm:/home/xie# bg %1
    [1]+ ping 192.168.204.35 &
    root@xie-vm:/home/xie# ps -e | grep ping
      4777 pts/1    00:00:00 ping
    

    • ***renice ***
    作用:改变已运行程序的调度优先级
    用法:
    renice pri -p pid:将进程号为pid的进程的优先级设置为pri
    renice pri -u user: 将进程拥有者为user的进程的优先级设置为pri
    

    example:

    root@xie-vm:/home/xie# ps -o pid,ni,cmd,user
       PID  NI CMD                         USER
      4231   0 su                          root
      4232   0 bash                        root
      4761   0 ps -o pid,ni,cmd,user       root
    root@xie-vm:/home/xie# renice 1 -p 4231
    4231 (process ID) old priority 0, new priority 1
    root@xie-vm:/home/xie# ps -o pid,ni,cmd,user
       PID  NI CMD                         USER
      4231   1 su                          root
      4232   0 bash                        root
      4764   0 ps -o pid,ni,cmd,user       root
    root@xie-vm:/home/xie# renice 1 -u root
    0 (user ID) old priority 0, new priority 1
    root@xie-vm:/home/xie# ps -o pid,ni,cmd,user
       PID  NI CMD                         USER
      4231   1 su                          root
      4232   1 bash                        root
      4766   1 ps -o pid,ni,cmd,user       root
    

    • uname
    作用:显示操作系统的名称
    用法:
    uname -a:详细输出所有信息,依次为内核名称,主机名,内核版本号,内核版本,硬件名,处理器类型,硬件平台类型,操作系统名称
    uname -s :输出内核名称
    uname -n :输出主机名
    uname -r :输出内核版本号
    uname -v :内核版本
    uname -m :硬件名
    uname -p :处理器类型
    uname -i :硬件平台类型
    uname -o :操作系统名称
    

    example

    root@xie-vm:/home/xie# uname -a
    Linux xie-vm 3.19.0-68-generic #76-Ubuntu SMP Fri Aug 12 08:48:09 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux
    root@xie-vm:/home/xie# uname -s
    Linux
    root@xie-vm:/home/xie# uname -n
    xie-vm
    root@xie-vm:/home/xie# uname -r
    3.19.0-68-generic
    root@xie-vm:/home/xie# uname -v
    #76-Ubuntu SMP Fri Aug 12 08:48:09 UTC 2016
    root@xie-vm:/home/xie# uname -m
    x86_64
    root@xie-vm:/home/xie# uname -p
    x86_64
    root@xie-vm:/home/xie# uname -i
    x86_64
    root@xie-vm:/home/xie# uname -o
    GNU/Linux
    

    • uptime
    作用:显示系统已经运行的时间
    用法:
    uptime:显示系统已经运行的时间及负载
    

    example

    root@xie-vm:/home/xie# uptime
     14:43:46 up 23:44,  3 users,  load average: 0.00, 0.02, 0.05
    

    解释:

    1. 当前时间 14:43:46
    2. 系统已运行的时间 23小时44分钟
    3. 当前在线用户 3 user
    4. 平均负载:0.00, 0.02, 0.05,最近1分钟、5分钟、15分钟系统的负载
    

    相关文章

      网友评论

          本文标题:linux常用命令行(2)

          本文链接:https://www.haomeiwen.com/subject/ccuzbttx.html