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