Skip to content

Instantly share code, notes, and snippets.

View cometsong's full-sized avatar
🥸

Benjamin Leopold cometsong

🥸
  • Sol III
View GitHub Profile
@cometsong
cometsong / newscript.sh
Last active May 11, 2020 20:06 — forked from aaronNGi/newscript.sh
Boilerplate for new POSIX shell scripts
#!/bin/sh
prog_name=${0##*/}
version=0.1
version_text="Boilerplate for new scripts v$version";
options="h q v V d " # basic opts
options+="o: " # script specifics
help_text="Usage: $prog_name [-o <text>] [-hqvV] [<file>]...
${version_text}