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.
This commit is contained in:
Tom Willemse 2013-05-20 00:21:12 +02:00
parent abe302c1b6
commit 8c8fa18857

9
pt Executable file
View file

@ -0,0 +1,9 @@
#!/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\")"