diff --git a/pcat.py b/pcat.py new file mode 100755 index 0000000..9dd0768 --- /dev/null +++ b/pcat.py @@ -0,0 +1,8 @@ +#!/usr/bin/env python3 +# +import sys + +while True: + with open(sys.argv[1],'r') as fd: + print(fd.read(), flush=True) +