unison/scripts/toucher.sh
2018-11-06 16:06:32 -05:00

18 lines
214 B
Bash
Executable File

#! /bin/bash
function touch_the_things {
for x in $(seq 10 1)
do
echo $x
sleep 1
done
for i in $(find unison-src/tests -name *.u)
do
touch $i
done
}
touch_the_things &
stack exec unison