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