view bin/raw-url @ 8497:2c419f225667

<izabera> ` echo \'for file do mapfile -t lines < "$file"; for (( i = ${#lines[@]} -1; i >= 0; i-- )) do printf "%s\\n" "${lines[i]}"; done done\' >> bin/tac
author HackBot
date Thu, 16 Jun 2016 09:40:02 +0000
parents 5a4571b62410
children 024b7442d847
line wrap: on
line source

#!/usr/bin/env python
import sys, urllib
if len(sys.argv) <= 1:
    print "http://codu.org/projects/hackbot/fshg/"
else:
    print ("http://codu.org/projects/hackbot/fshg/index.cgi/raw-file/tip/" +
        urllib.quote(sys.argv[1]))