kaarvok/pt
Tom Willemse 8c8fa18857 Add pt script
The `pt' script is used to add a command-line interface to the
`project-template' module. It runs the
`pt-create-project-from-template' function, passing along the first
and second arguments.
2013-05-20 00:21:12 +02:00

9 lines
214 B
Bash
Executable file

#!/bin/sh
if [ "${#@}" -lt 2 ]; then
echo "Usage: $0 <template name> <destination>"
exit 1
fi
/usr/bin/emacs -Q -batch -l project-template.el -eval \
"(pt-create-project-from-template \"$1\" \"$2\")"