e82cf339e4
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
9 lines
154 B
Plaintext
9 lines
154 B
Plaintext
dt1="`date -R`"
|
|
# Wait for the start of next second
|
|
dt="$dt1"
|
|
while test x"$dt" = x"$dt1"; do
|
|
dt="`date -R`"
|
|
done
|
|
|
|
test x"$dt" = x"`busybox date -R`"
|