zoukankan      html  css  js  c++  java
  • /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 这样的写法.
     
    参考:http://viplin.blog.51cto.com/241472/99568
  • 相关阅读:
    selenium又一小坑 无法用XPATH直接获取属性值 需要使用.get_attribute(“href”)
    seleium 之 EC 的用法
    用筛选法求100以内的素数(筛选法!!!)
    gets scanf getchar的用法
    P5728 【深基5.例5】旗鼓相当的对手
    访问那个地址上的变量 *
    素数表
    求素数
    求符合给定条件的整数集(c语言mooc 6.0 )
    C#理论学习
  • 原文地址:https://www.cnblogs.com/weifeng1463/p/7258348.html
Copyright © 2011-2022 走看看