===== mail ===== Mail mit dem UNIX-Kommando Mail versenden: === Kommando === mail -s "" < === Script === #! /bin/sh out='bla' echo $out | mail -s "" -r === Cron-Job === * * * * * /bin/sh /var/scripts/mail.sh === Beispiel === mail -s "testmail 10:00" dvonloh@testo.de < body.txt
mail -s "" <
#! /bin/sh out='bla' echo $out | mail -s "" -r
* * * * * /bin/sh /var/scripts/mail.sh
mail -s "testmail 10:00" dvonloh@testo.de < body.txt