ref: cb76f5d90002b9d2f8c3a384b45377c909fa5f8a 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