From 9b58efa0a8a91c779130a670a45dcff3661b6012 Mon Sep 17 00:00:00 2001 From: Michael Grote Date: Sat, 23 Oct 2021 14:29:05 +0200 Subject: [PATCH] alias: mail funktion --- .bash_functions | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.bash_functions b/.bash_functions index a8fb107..2287ea5 100644 --- a/.bash_functions +++ b/.bash_functions @@ -9,3 +9,8 @@ ssh() { #() ist die kurzform von function tmux rename-window "$*" command ssh "$@" } +# sende eine Datei per Mail +# $1 = Titel und Body, $2 Pfad zu Datei +function m2m { + echo "$1" | mail -s "$1" -A "$2" michael.grote@posteo.de +}