Skip to content

Instantly share code, notes, and snippets.

@ZiTAL
Created November 25, 2022 11:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ZiTAL/acf0a94695e3946e9e70f3f4a8df6ba0 to your computer and use it in GitHub Desktop.
Save ZiTAL/acf0a94695e3946e9e70f3f4a8df6ba0 to your computer and use it in GitHub Desktop.
mail: fish vs bash
# bash style:
/usr/bin/mail -s "Title" -r sender@sender.com receptor@receptor.com <<< "BODY"
# fish and bash:
echo "Body" | /usr/bin/mail -s "Title" -r sender@sender.com receptor@receptor.com
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment