unison/scripts/toucher.sh

18 lines
214 B
Bash
Raw Normal View History

2018-11-07 00:06:32 +03:00
#! /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