a task automation and build system
“taking the worst ideas from make and gulp”
        
          

targets in Bash and Python

hi1: echo hello world! hi2: !py print "hello world!"
        
          

watches and redirects

dev: dump ^index.md twistd -n web --path=. dump: >index.html pandoc -i index.md -o index.html
        
          

pipes and dependencies

count: wc -c dump: |count echo hello