this post was submitted on 13 Nov 2025
4 points (100.0% liked)
Ask Linux
122 readers
1 users here now
Ask the community any questions about Linux
founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
thunar ./hello.txt >/dev/null 2>&1 &The
>/dev/nullsends stdout to nowhere while the2>&1send stderr to stdoutIs this the fastest way? typing this out with every call is tideous. can one add an alias for this?