Welcome to mirror list, hosted at ThFree Co, Russian Federation.

date-R-works « date « testsuite - git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d056344561a1c3509cce7dc629cfb41ff959b88a (plain)
1
2
3
4
5
6
7
8
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`"