view bin/uniqs @ 6520:7f4033c9786b

<ais523> ` ar x wamerican*.deb data.tar.gz
author HackBot
date Tue, 05 Jan 2016 23:46:22 +0000
parents 9bf80fcf858b
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