SpectreOS-old/sort.sh

11 lines
142 B
Bash
Raw Normal View History

2018-02-26 02:41:29 +01:00
#!/bin/sh
set -ex
while (( "$(expr $#)" ))
do
for i in $(cat $1) ; do echo $i ; done | sort | uniq > test
cp test $1
shift
done