linux shell命令中默认标准输出为1,错误输出为2
>dev/null 2>&1 意为将标准输出到空设备,并将错误输出也采用标准输出。
2>dev/null 1>&2 和上面是等价的。
具体参考 http://www.jb51.net/article/106373.htm