On Sat, 2025-05-24 at 04:47 -0700, ToddAndMargo via users wrote: > Hi All, > > I still get all the trash with this: > > echo $msg | /usr/bin/mailx $smtp -s $IAm" Disk Status" -r $From $To > 2>&1 > /dev/nul > > I think I am putting the `2>&1 > /dev/nul` in the wrong place. > > What am I doing wrong?
It's the wrong way round. The 2>&1 means "redirect the current fd 2 to the same place as fd 1", but at this point fd 1 is still unchanged. You also misspelled /dev/null but I assume that's a typo. You want "... > /dev/null 2>&1". poc -- _______________________________________________ users mailing list -- [email protected] To unsubscribe send an email to [email protected] Fedora Code of Conduct: https://docs.fedoraproject.org/en-US/project/code-of-conduct/ List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines List Archives: https://lists.fedoraproject.org/archives/list/[email protected] Do not reply to spam, report it: https://pagure.io/fedora-infrastructure/new_issue
