view bin/edit @ 10339:5297a274b9a6

<oerjan> sled bin/\xc2\xbf//s,^,\\\\,
author HackBot
date Fri, 24 Feb 2017 01:44:45 +0000
parents 8c93629c5394
children ace1c1f6c46e
line wrap: on
line source

#!/usr/bin/env python

import sys, os.path, re, urllib

if len(sys.argv) < 2:
  sys.exit('http://hackego.esolangs.org/edit/')

f = os.path.realpath(sys.argv[1])
f = re.sub(r"^/+hackenv/", "", f)
if re.match(r"/|\.hg(?:/|ignore$|$)",f):
  sys.exit("File is not editable.")
print 'http://hackego.esolangs.org/edit/' + urllib.quote(f)