shell-scripte-code/sort.sh

3 lines
63 B
Bash
Raw Normal View History

2017-12-28 12:42:17 -05:00
#!/bin/sh
for i in $(cat $1) ; do echo $i ; done | sort | uniq