How do I suppress output from this Shell command
问题 Why are the redirection operations in this command line apparently ignored by bash? I aim to redirect standard error to standard out, and then feed the whole lot into the void. ( cd ../src/ && python -m SimpleHTTPServer 8000 2>&1 > /dev/null ) & I'm running a SimpleHTTPServer on some static web content, so that wget can check it for dead links. However, I don't want to see the errors from the server (requests for failed pages), as the wget log file provides all the information I need.