aboutsummaryrefslogtreecommitdiff
path: root/.local
diff options
context:
space:
mode:
authorPatrick Spek <p.spek@tyil.nl>2019-10-23 11:33:52 +0200
committerPatrick Spek <p.spek@tyil.nl>2019-10-23 11:33:52 +0200
commit2fcb8a91326581dc4f90495b472ccea94415ce6d (patch)
tree081a1cc09e685396be749f191411f4671d522785 /.local
parentd2243899205a271883e7f922d6988637be00ac77 (diff)
Add basic templating tool
Diffstat (limited to '.local')
-rwxr-xr-x.local/bin/new74
-rw-r--r--.local/templates/sh46
2 files changed, 120 insertions, 0 deletions
diff --git a/.local/bin/new b/.local/bin/new
new file mode 100755
index 0000000..2de7ecd
--- /dev/null
+++ b/.local/bin/new
@@ -0,0 +1,74 @@
+#! /usr/bin/env sh
+
+main()
+{
+ # Handle opts
+ opts "$@"
+ shift "$OPTS"
+ unset OPTS
+
+ # Show help
+ [ "$OPT_HELP_ONLY" ] && usage && exit 0
+
+ if [ -d "$1" ]
+ then
+ printf "A directory already exists at %s\n" "$1" >&2
+ exit 1
+ fi
+
+ if [ -f "$1" ]
+ then
+ printf "A file already exists at %s\n" "$1" >&2
+ exit 1
+ fi
+
+ if [ -z "$TYPE" ]
+ then
+ # TODO: Calculate type from extension
+ TYPE=
+ fi
+
+ if [ ! -f "$XDG_TEMPLATES_DIR/$TYPE" ]
+ then
+ printf "No template for %s\n" "$TYPE" >&2
+ touch "$1"
+ return 0
+ fi
+
+ cp -- "$XDG_TEMPLATES_DIR/$TYPE" "$1"
+}
+
+opts()
+{
+ OPTS=0
+
+ while getopts ":ht:" opt
+ do
+ case "$opt" in
+ h) OPT_HELP_ONLY=1 OPTS=$((OPTS + 1)) ;;
+ t) TYPE=$OPTARG OPTS=$((OPTS + 2)) ;;
+ *)
+ printf "Invalid option passed: %s\n" "$OPTARG" >&2
+ ;;
+ esac
+ done
+
+ unset opt
+}
+
+usage()
+{
+ cat <<EOF
+Usage:
+ $(basename "$0") -h
+ $(basename "$0") [-t TYPE] <LOCATION>
+
+Create a new file from a template, found in the \$XDG_TEMPLATES_DIR directory.
+
+Options:
+ -h Show this help text and exit.
+ -t Specify the template type to use.
+EOF
+}
+
+main "$@"
diff --git a/.local/templates/sh b/.local/templates/sh
new file mode 100644
index 0000000..ff7bc6d
--- /dev/null
+++ b/.local/templates/sh
@@ -0,0 +1,46 @@
+#! /usr/bin/env sh
+
+main()
+{
+ # Handle opts
+ opts "$@"
+ shift "$OPTS"
+ unset "$OPTS"
+
+ # Show help
+ [ "$OPT_HELP_ONLY" ] && usage && exit 0
+
+ # TODO: Write actual program
+}
+
+opts()
+{
+ OPTS=0
+
+ while getopts ":h" opt
+ do
+ case "$opt" in
+ h) OPT_HELP_ONLY=1
+ *)
+ printf "Invalid option passed: %s\n" "$OPTARG" >&2
+ ;;
+ esac
+ done
+
+ unset opt
+}
+
+usage()
+{
+ cat <<EOF
+Usage:
+ $(basename "$0") -h
+
+Nondescript
+
+Options:
+ -h Show this help text and exit.
+EOF
+}
+
+main "$@"