-
-
Save og-shawn-crigger/5745732 to your computer and use it in GitHub Desktop.
Revisions
-
og-shawn-crigger revised this gist
Jun 9, 2013 . No changes.There are no files selected for viewing
-
jcanfield created this gist
Feb 22, 2013 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,9 @@ #!/bin/bash # View Website source with syntax highlighting via Pygmentize echo "Viewing Source for $1" read -p "USAGE: viewsource http://www.website.com/ (Press Enter To Continue)" curl -s "$1" | pygmentize -f terminal256 -l html -O style=monokai exit