Files
dotfiles/.config/coc/ultisnips/sh.snippets
2026-03-25 16:31:17 +01:00

10 lines
180 B
Plaintext

snippet skeleton "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