author | Patrick Mezard <pmezard@gmail.com> |
Mon, 12 Apr 2010 21:37:21 +0200 | |
changeset 10886 | 38f2ef9c134b |
parent 10774 | 0065e6b42a25 |
child 11198 | b345b1cc124f |
permissions | -rw-r--r-- |
10774 | 1 |
#/bin/sh |
2 |
||
3 |
hideport() { sed "s/localhost:$HGPORT/localhost:\$HGPORT/"; } |
|
4 |
||
5 |
repr() { python -c "import sys; print repr(sys.stdin.read()).replace('\\n', '\n')" } |
|
6 |
||
7 |
hidehex() { python -c 'import sys, re; print re.replace("\b[0-9A-Fa-f]{12,40}", "X" * 12)' } |
|
8 |
||
9 |
hidetmp() { sed "s/$HGTMP/\$HGTMP/"; } |