Useful bash commands
It’s not always easy to remember the commands used for a special task if performed once a year.
Below I have gathered a few such commands that may be of interest in the future too.
1. Sending mail with/without attachment.
:~$ echo "message body" | mail -s "my subject" user@mail
:~$ echo "message body" | mutt -s "my subject" [...]
