Vim – additional files and docs

This commit is contained in:
2024-02-19 14:41:57 +01:00
parent 1112cd1229
commit cbdd0e0c20
13 changed files with 482 additions and 0 deletions

View File

@ -0,0 +1,9 @@
snippet sceleton "bash" b
#!/usr/bin/env ${1:bash}
set -eou pipefail
${0}
endsnippet
snippet info "script name and version" b
this="${0##*/}"
version="`date +%Y-%m-%d`"
endsnippet