I hereby claim:
- I am bwhmather on github.
- I am bwhmather (https://keybase.io/bwhmather) on keybase.
- I have a public key ASBri6MY1RlNTLY4Sy34gaGLuRtf2-Hx7vGtZLwa85Covgo
To claim this, I am signing this object:
#!/usr/bin/sh | |
while true; do | |
reset; | |
"$@" & | |
PID=$!; | |
inotifywait -e MODIFY --recursive .; | |
kill $PID; | |
wait $PID; | |
done |
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/sh | |
while true; do | |
reset; | |
"$@"; | |
inotifywait -e MODIFY --recursive .; | |
done |
#!/usr/bin/env python | |
from subprocess import call | |
from sys import argv | |
from os.path import abspath | |
# encode + decode required for python 3 | |
# TODO make sure that scheme escapes in the same way as c | |
infile = abspath(argv[1]).encode('unicode_escape').decode('utf-8') | |
outfile = abspath(argv[2]).encode('unicode_escape').decode('utf-8') |