Files
dotfiles-vim/.vim/templates/sh
Chuck Hawley (chawley/shawshank) 029cee5f7c Initial commit
2017-10-10 16:53:19 -04:00

27 lines
536 B
Plaintext

:insert
#!/usr/bin/env bash
#===============================================================================
#
# FILE:
# USAGE:
# DESCRIPTION:
# OPTIONS:
# REQUIREMENTS:
# NOTES:
# AUTHOR: C Hawley
# CREATED:
# REVISION:
#
#===============================================================================
set -o nounset # Treat unset variables as an error
# Check for empty argument
if [ -z "${1:-}" ]; then
arg="undefined"
else
arg=$1
fi
.