2>&1 > /dev/null не помогает
местами поменяй редиректы. или используй типа &>/dev/null
&>/dev/null Спасибо
эти параметры читаются справа налево. Чтобы скрыть и stdout, и stderr, надо делать наоборот - 1>/dev/null 2>&1
Такой вариант тоже работает, спасибо. Буду знать.
ну или просто 1>/dev/null 2>/dev/null и не париться :) И да, просто > и 1> - одно и то же
Об этом догадывался, что по умолчанию перенаправляется только stdout
можно дополнительные делать. 1>&3 - почему нет.
поправка: слева направо, но через жопу. Note that the sequence of I/O redirections is interpreted left-to-right, but pipes are set up before the I/O redirections are interpreted. File descriptors such as 1 and 2 are references to open file descriptions. The operation 2>&1 makes file descriptor 2 aka stderr refer to the same open file description as file descriptor 1 aka stdout is currently referring to (see dup2() and open()). The operation >/dev/null then changes file descriptor 1 so that it refers to an open file description for /dev/null, but that doesn't change the fact that file descriptor 2 refers to the open file description which file descriptor 1 was originally pointing to — namely, the pipe. http://www.gnu.org/software/bash/manual/bash.html#Redirections
Обсуждают сегодня