Redirect the output of tar
to /dev/null
:
tar [your options] [files] &> /dev/null
Any echo
command you have in your script will still output to the screen.
4
solved Shell Scripts with conditional echos
Redirect the output of tar
to /dev/null
:
tar [your options] [files] &> /dev/null
Any echo
command you have in your script will still output to the screen.
4
solved Shell Scripts with conditional echos