zfs: Add meetingnotes snippet

This commit is contained in:
2019-07-04 14:36:45 +02:00
parent 18c46aa34a
commit 07547e8326

View File

@@ -293,3 +293,10 @@ gb() {
builtin cd "$(git rev-parse --show-toplevel)"
fi
}
meetingnotes() {
[[ "${1}" ]] || return 1
file="$(date +%Y-%m-%d)-${1}.md"
cp ~/snippets/meetingnotes.md "${file}"
$EDITOR "${file}"
}