view bin/wiki @ 12121:3d6b560fc682 draft

<fizzie> sled /hackenv/bin/whoq//s|quotes|${HACKENV-/hackenv}/quotes|
author HackEso <hackeso@esolangs.org>
date Sat, 16 Nov 2019 23:13:49 +0000
parents 6f89145cd692
children 2c8c313864e7
line wrap: on
line source

#!/usr/bin/env python
import sys, os.path, urllib
if len(sys.argv) <= 1:
    print "https://esolangs.org/"
else:
    f = os.path.abspath(sys.argv[1])
    if f.startswith('/hackenv/'): f = f[9:]
    print ("https://esolangs.org/wiki/" +
        urllib.quote(f))