Skip to content

Instantly share code, notes, and snippets.

@Fitblip
Created April 13, 2012 21:52
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 Fitblip/2380395 to your computer and use it in GitHub Desktop.
Save Fitblip/2380395 to your computer and use it in GitHub Desktop.
Sulley issue #14
#!/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