mirror of
https://git.busybox.net/busybox
synced 2025-05-10 04:33:59 +02:00
8 lines
156 B
Text
Executable file
8 lines
156 B
Text
Executable file
$THIS_SH -c 'echo 3&'
|
|
d=`date`
|
|
while test "`date`" = "$d"; do true; done
|
|
d1=`date`
|
|
$THIS_SH -c 'sleep 1&'
|
|
d2=`date`
|
|
test "$d1" = "$d2" || echo BAD
|
|
echo End
|