I want to redirect the stderr and stdout to dev/null. Which ist the correct way to redirect and is there difference betweent these options? I have seen in internet two syntax:
command &>/dev/null
(without space)command &> /dev/null
(with space)
Thanks in advance!