a short bash script will do, if you have w3m (or curl, etc.) installed :p trypath() { printf "Try: %s " $1 res=`w3m -dump 'http://www.hacker.org/challenge/misc/maze.php?steps='$1` echo $res if echo $res | grep moving &>/dev/null; then for i in U D L R; do trypath $1$i; done fi } trypat...