view bin/uniqs @ 10544:4d6bdc52912d

<oerjan> sled bin/#//3,$cnur "${1#*$sep}"
author HackBot
date Thu, 30 Mar 2017 01:52:28 +0000
parents c989a1669243
children
line wrap: on
line source

#!/usr/bin/python
s=set()
try:
 while True:
  l=raw_input()
  if l not in s:
   s.add(l)
   print(l)
except EOFError:
 pass