SpectreOS-old/sort.sh
2018-02-26 02:41:29 +01:00

10 lines
142 B
Bash
Executable file

#!/bin/sh
set -ex
while (( "$(expr $#)" ))
do
for i in $(cat $1) ; do echo $i ; done | sort | uniq > test
cp test $1
shift
done