Skip to content

Instantly share code, notes, and snippets.

@papachan
Last active April 9, 2016 18:40
Show Gist options
  • Save papachan/999eb145dc2ddeb32f3e70d8bd9229d5 to your computer and use it in GitHub Desktop.
Save papachan/999eb145dc2ddeb32f3e70d8bd9229d5 to your computer and use it in GitHub Desktop.
#!/usr/bin/env bash
if [ -z "$1" ]; then
echo "No argument"
exit
fi
echo "Generate $1 project ..."
sbcl --noinform --eval '(ql:quickload :quickproject)' \
--eval "(quickproject:make-project \"$1\")" \
--eval "(ql:quickload \"$1\")" \
--eval '(quit)'
exit
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment