Recommend this page to a friend! | Stumble It! | Bookmark in del.icio.us |
Classes of Benjie Velarde | > | SquareSpec | > | square.sh | > | Download | ||
|
Download |
#!/bin/bash SCRIPT=$(readlink -f $0) SCRIPTPATH=`dirname $SCRIPT` CMD="php $SCRIPTPATH/square.php" ERRMSG="Usage: square (<spec-file>)" if [[ $1 ]] then $CMD $1 else $CMD fi |