bin/nim-proj (view raw)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
#!/usr/bin/env bash # nim-proj.sh: initializes help() { echo "Usage:" echo "nim-proj <name> <description>" } if [ $# -eq 2 ]; then nimble init $1 cd $1 cat <<- EOF > readme.md # $1 > $2 EOF git init else help fi