filtertmp.py
15 lines
| 351 B
| text/x-python
|
PythonLexer
/ tests / filtertmp.py
Patrick Mezard
|
r10468 | #!/usr/bin/env python | ||
# | ||||
# This used to be a simple sed call like: | ||||
# | ||||
# $ sed "s:$HGTMP:*HGTMP*:" | ||||
# | ||||
# But $HGTMP has ':' under Windows which breaks the sed call. | ||||
# | ||||
import sys, os | ||||
input = sys.stdin.read() | ||||
input = input.replace(os.sep, '/') | ||||
Patrick Mezard
|
r10469 | hgtmp = os.environ['HGTMP'].replace(os.sep, '/') | ||
input = input.replace(hgtmp, '$HGTMP') | ||||
Patrick Mezard
|
r10468 | sys.stdout.write(input) | ||