forked from haiwan/sledge
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
139 B
10 lines
139 B
6 months ago
|
./test.sh small.txt 2 480 9 2 2>&1 &
|
||
|
pid1=$!
|
||
|
./test.sh large.txt 1 120 9 2 2>&1 &
|
||
|
pid2=$!
|
||
|
wait -f $pid1
|
||
|
wait -f $pid2
|
||
|
printf "[OK]\n"
|
||
|
|
||
|
|