2 lines
73 B
Bash
Executable file
2 lines
73 B
Bash
Executable file
#!/usr/bin/env bash
|
|
for i in $(cat $1) ; do echo $i ; done | sort | uniq
|