Skip to content

Instantly share code, notes, and snippets.

@guludo
Created November 23, 2015 17:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save guludo/87a865f9f93ce6f7531f to your computer and use it in GitHub Desktop.
Save guludo/87a865f9f93ce6f7531f to your computer and use it in GitHub Desktop.
Piece of script to find waf
#!/bin/bash
#
# Source this file.
#
D=$(while [[ $PWD != / && ! -x waf ]]; do cd .. ; done; echo $PWD)
WAF_PATH="$D/waf"
waf() {
$WAF_PATH $*
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment