thunar ./hello.txt >/dev/null 2>&1 &
The >/dev/null sends stdout to nowhere while the 2>&1 send stderr to stdout
Ask the community any questions about Linux
thunar ./hello.txt >/dev/null 2>&1 &
The >/dev/null sends stdout to nowhere while the 2>&1 send stderr to stdout
Is this the fastest way? typing this out with every call is tideous. can one add an alias for this?