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
  • 相关阅读:
    js——正则整理
    纯css改变select默认样式
    CSS3——瀑布流,多列(Multi-column)
    angularjs + ionic 实现项目的按需加载
    jquery的deferred对象
    Nginx 配置反向代理
    docker部署vue项目总结
    模糊查询json数组
    LocalStorage存储JSON对象、存储数组
    iview中遇到table的坑(已经修改了table的数据,但是界面没有更新)
  • 原文地址:https://www.cnblogs.com/weifeng1463/p/7258348.html
Copyright © 2011-2022 走看看