“Bash Stderr Null” Ответ

Bash перенаправить выход на NULL

command > /dev/null
#Example
echo "Hello World"
Hello World
echo "Hello World" > /dev/null
#Doesn't show anything
POG

Bash Stderr Null

command > /dev/null # stderr
command > /dev/null 2>&1 # stdout and stderr
command &> /dev/null # stdout and stderr
Alert Addax

Ответы похожие на “Bash Stderr Null”

Вопросы похожие на “Bash Stderr Null”

Больше похожих ответов на “Bash Stderr Null” по Shell/Bash

Смотреть популярные ответы по языку

Смотреть другие языки программирования