dotfiles/dotfiles/lib/python/escape.py

11 lines
136 B
Python
Executable File

#!/usr/bin/env python
import sys
def escape(string):
print repr(string)
if __name__ == '__main__':
escape(sys.stdin.read())