What is the difference between the following commands?
ssh myhostname "command1; command2;...commandn;" 2>/dev/null
ssh myhostname "command1; command2;...commandn;"
- what does 2> mean?
- what does /dev/null mean?
I read the result of this command will be written on the file /dev/null Instead of this console Is it right?
It seems strange to me that my name of this file is null.