dotfiles/dotfiles/lib/python/unescape.py

11 lines
140 B
Python
Executable File

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