Pake is a simple utility for automating tasks like building apps and different bundles, removing temporary files, migrating databases and other stuff. Just like make or rake. Pakefiles are written in YAML and can contain python and shell scripts.
Contents:
1 2 3 4 5 6 | default:
python:
sys.stdout.write("PYTHON Test sys.argv[0] = %s\n" % sys.argv[0])
shell:
echo 'SHELL Test uname -a:'
uname -a
|