I want to make my Bash scripts more elegant for the end user. How do I hide the output when Bash is executing commands?
For example, when Bash executes
>/dev/null 2>&1 will mute both stdout and stderr
>/dev/null 2>&1
stdout
stderr
yum install nano >/dev/null 2>&1