1bup-tick(1) bup-tick(1)
2
3
4
6 bup-tick - wait for up to one second
7
9 bup tick
10
12 bup tick waits until time(2) returns a different value than it origiā
13 nally did. Since time() has a granularity of one second, this can
14 cause a delay of up to one second.
15
16 This program is useful for writing tests that need to ensure a file
17 date will be seen as modified. It is slightly better than sleep(1)
18 since it sometimes waits for less than one second.
19
21 $ date; bup tick; date
22 Sat Feb 6 16:59:58 EST 2010
23 Sat Feb 6 16:59:59 EST 2010
24
26 Part of the bup(1) suite.
27
29 Avery Pennarun <apenwarr@gmail.com>.
30
31
32
33Bup 0.29.1 2017-03-26 bup-tick(1)