when I want to run a file manager or firefox from terminal, how can I surpress output and run it in the background as quickly as possible?
My current approach (an example starting thunar file manager in background):
thunar ./hello.txt&
but sometimes messages still pop up in the terminal then ...
2 Comments
trigg@lemmy.world · 2 pts · 287d
thunar ./hello.txt >/dev/null 2>&1 &The
>/dev/nullsends stdout to nowhere while the2>&1send stderr to stdoutPlanterTree@discuss.tchncs.de · 1 pts · 286d
Is this the fastest way? typing this out with every call is tideous. can one add an alias for this?