3 lines
63 B
Bash
3 lines
63 B
Bash
|
#!/bin/sh
|
||
|
for i in $(cat $1) ; do echo $i ; done | sort | uniq
|