bash: m2m - revert

This commit is contained in:
Michael Grote 2021-11-02 19:41:24 +01:00
parent 43bc0d500e
commit 2e46ae3cd0

View file

@ -13,7 +13,7 @@ ssh() { #() ist die kurzform von function
command ssh "$@" command ssh "$@"
} }
# sende eine Datei per Mail # sende eine Datei per Mail
# $1 = Pfad zu Datei # $1 = Titel und Body, $2 Pfad zu Datei
function m2m { function m2m {
echo "$1" | mail -s "$1" -A "$1" michael.grote@posteo.de echo "$1" | mail -s "$1" -A "$2" michael.grote@posteo.de
} }