annotate bin/wiki @ 11334:6f89145cd692

<fizzie> fetch bin/wiki https://hackego.esolangs.org/get/bin/wiki
author HackBot
date Sat, 20 Jan 2018 12:42:29 +0000
parents 355a1c8028dc
children 2c8c313864e7
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
10392
355a1c8028dc <oerjan> fetch bin/wiki https://hackego.esolangs.org/get/bin/wiki
HackBot
parents:
diff changeset
1 #!/usr/bin/env python
355a1c8028dc <oerjan> fetch bin/wiki https://hackego.esolangs.org/get/bin/wiki
HackBot
parents:
diff changeset
2 import sys, os.path, urllib
355a1c8028dc <oerjan> fetch bin/wiki https://hackego.esolangs.org/get/bin/wiki
HackBot
parents:
diff changeset
3 if len(sys.argv) <= 1:
355a1c8028dc <oerjan> fetch bin/wiki https://hackego.esolangs.org/get/bin/wiki
HackBot
parents:
diff changeset
4 print "https://esolangs.org/"
355a1c8028dc <oerjan> fetch bin/wiki https://hackego.esolangs.org/get/bin/wiki
HackBot
parents:
diff changeset
5 else:
355a1c8028dc <oerjan> fetch bin/wiki https://hackego.esolangs.org/get/bin/wiki
HackBot
parents:
diff changeset
6 f = os.path.abspath(sys.argv[1])
11334
6f89145cd692 <fizzie> fetch bin/wiki https://hackego.esolangs.org/get/bin/wiki
HackBot
parents: 10392
diff changeset
7 if f.startswith('/hackenv/'): f = f[9:]
10392
355a1c8028dc <oerjan> fetch bin/wiki https://hackego.esolangs.org/get/bin/wiki
HackBot
parents:
diff changeset
8 print ("https://esolangs.org/wiki/" +
355a1c8028dc <oerjan> fetch bin/wiki https://hackego.esolangs.org/get/bin/wiki
HackBot
parents:
diff changeset
9 urllib.quote(f))