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