Created
April 13, 2012 21:52
-
-
Save Fitblip/2380395 to your computer and use it in GitHub Desktop.
Sulley issue #14
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# *nix version of building epydoc from the command line | |
# Verify epydoc is available | |
EPYDOC=`which epydoc` | |
if [ $? -ne 0 ]; then | |
echo "Can not find epydoc in path. Exiting ..." | |
exit $? | |
fi | |
# Run! | |
$EPYDOC -o Sulley --css blue --name "Sulley: Fuzzing Framework" --url "http://pedram.openrce.org" ../sulley |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment