view bin/url @ 12208:50d588d1d00f draft

<b_jonas> `` set -e; f=/hackenv/bin/STOP; >$f echo $\'#!/bin/sh\\nrm -vf /hackenv/bin/bfbotquine\'; chmod -c a+x "$f"
author HackEso <hackeso@esolangs.org>
date Fri, 29 Nov 2019 23:32:11 +0000
parents ff752d36eb0e
children
line wrap: on
line source

#!/usr/bin/env python
import sys, os.path, re, urllib
if len(sys.argv) <= 1:
    print "https://hack.esolangs.org/repo/"
else:
    f = os.path.abspath(sys.argv[1])
    f = re.sub(r"^/+hackenv/", "", f)
    if re.match(r"/|\.hg(?:/|$)",f):
        sys.exit("File is outside web-viewable filesystem repository.")
    elif re.match(r"tmp(?:/|$)",f):
        print ("https://hack.esolangs.org/" + urllib.quote(f))
    else:
        print ("https://hack.esolangs.org/repo/file/tip/" +
            urllib.quote(f))