SpectreOS-old/fill.sh

15 lines
180 B
Bash
Raw Normal View History

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