vim cleanup and shellcheck

This commit is contained in:
Noah Masur
2021-04-10 11:56:38 -04:00
parent 6678ef35a9
commit 5275fcb93e
4 changed files with 48 additions and 27 deletions

8
shell/templates/help Normal file
View File

@ -0,0 +1,8 @@
#!/bin/sh
if [ "$1" = "--help" ] || [ "$1" = "-h" ]; then
cat <<EOH
Help text
EOH
exit
fi