shell-scripte-code/sort.sh

3 lines
63 B
Bash
Raw Normal View History

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