ref: 5b679ba15fcc7ab1b381e4c0f97d4f401a16e14e dir: /scripts/get_waf.sh/
#! /bin/sh set -e set -x WAFURL=https://waf.io/waf-2.0.1 ( which wget > /dev/null && wget -qO waf $WAFURL ) || ( which curl > /dev/null && curl $WAFURL > waf ) chmod +x waf