Tom Willemse
8c8fa18857
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.
9 lines
214 B
Bash
Executable file
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\")"
|