zoukankan      html  css  js  c++  java
  • 【Linux】/dev/null 2>&1 详解

     今天一个朋友突然在自己的维护的Linux中, /var/spool/cron/root 中看到了以下的内容:
    30 19 * * * /usr/bin/**dcon.sh > /dev/null 2>&1
    59 23 * * 1-7 /home/s**-log/squid-log.renew > /dev/null 2>&1
    50 1 * * 1-7 /usr/local/src/**log.sh > /dev/null 2>&1
    20 2 * * 1-7 /home/sq**-log/**log > /dev/null 2>&1
    30 2 * * 1-7 /home/sq**-log/**log.01
    30 22 * * * /bin/**sync > /dev/null 2>&1
    00 8 * * 1-7 /home/**-log/rmcore > /dev/null 2>&1
    00 16 * * 1-7 /home/**-log/rmcore > /dev/null 2>&1
    他问我为什么要用 /dev/null 2>&1 这样的写法.这条命令的意思是将标准输出和错误输出全部重定向到/dev/null中,也就是将产生的所有信息丢弃.下面我就为大家来说一下, command > file 2>file  与command > file 2>&1 有什么不同的地方.
          首先~command > file 2>file 的意思是将命令所产生的标准输出信息,和错误的输出信息送到file 中.command  > file 2>file 这样的写法,stdoutstderr都直接送到file中, file会被打开两次,这样stdoutstderr会互相覆盖,这样写相当使用了FD1和FD2两个同时去抢占file 的管道.
          而command >file 2>&1 这条命令就将stdout直接送向file, stderr 继承了FD1管道后,再被送往file,此时,file 只被打开了一次,也只使用了一个管道FD1,它包括了stdoutstderr的内容.
          从IO效率上,前一条命令的效率要比后面一条的命令效率要低,所以在编写shell脚本的时候,较多的时候我们会用command > file 2>&1 这样的写法.
     
    参考资料:
     
  • 相关阅读:
    怎么加载用户自定义控件
    一个C#委托的示例
    signed add
    避免QuartusII中将没有进行定义的信号自动生成wrie类型
    serial_to_parallel
    用modelsim仿真——对文件的操作
    base of logic
    blocking PK nonblocking
    parallel to serial
    使用signalTapII看综合掉的wrie和register的值
  • 原文地址:https://www.cnblogs.com/junneyang/p/5261897.html
Copyright © 2011-2022 走看看