From 43bc0d500e882a9dc5f92bb8d2babd895fd86cd9 Mon Sep 17 00:00:00 2001 From: Michael Grote Date: Tue, 2 Nov 2021 19:23:00 +0100 Subject: [PATCH 1/2] bash: m2m --- .bash_functions | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 } From 2e46ae3cd08e2991576b6f5ed1adcd1307d390fe Mon Sep 17 00:00:00 2001 From: Michael Grote Date: Tue, 2 Nov 2021 19:41:24 +0100 Subject: [PATCH 2/2] bash: m2m - revert --- .bash_functions | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.bash_functions b/.bash_functions index beb9503..6f0101e 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 = Pfad zu Datei +# $1 = Titel und Body, $2 Pfad zu Datei function m2m { - echo "$1" | mail -s "$1" -A "$1" michael.grote@posteo.de + echo "$1" | mail -s "$1" -A "$2" michael.grote@posteo.de }