mirror of
https://git.busybox.net/busybox
synced 2026-02-07 20:50:26 +00:00
8 lines
154 B
Text
8 lines
154 B
Text
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`"
|