How to use redirection command operator in Linux

在shell中,ls -la /etc/docker & > lwk.txt 的意思其实就是说,将标准输出与错误输出一起输出到文件lwk.txt中,另外一种写法是ls -la /etc/docker > lwk.txt 2>&1,你还可以写成ls -la /etc/docker >& lwk.txt

Reference

  • Shell中 &>/dev/null和 >/dev/null 2>&1

你可能感兴趣的:(Linux,Linux,redirection,command,operator)