mirror of
https://github.com/unisonweb/unison.git
synced 2024-11-15 14:35:01 +03:00
18 lines
214 B
Bash
Executable File
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
|
|
|