diff options
author | Jason McIntyre <jmc@cvs.openbsd.org> | 2007-02-06 20:07:17 +0000 |
---|---|---|
committer | Jason McIntyre <jmc@cvs.openbsd.org> | 2007-02-06 20:07:17 +0000 |
commit | 4c7864a3ea23ac1684d142bb51670fdc27abe8cc (patch) | |
tree | ec4c75ae39fa359764a98e419ac5587d32f69c4f /bin | |
parent | 0044c236c2a42c54691edb8497bce0fa8ce0a49e (diff) |
fix some dodgy displays;
Diffstat (limited to 'bin')
-rw-r--r-- | bin/sleep/sleep.1 | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/bin/sleep/sleep.1 b/bin/sleep/sleep.1 index b395be5d50b..daddcfedce9 100644 --- a/bin/sleep/sleep.1 +++ b/bin/sleep/sleep.1 @@ -1,4 +1,4 @@ -.\" $OpenBSD: sleep.1,v 1.13 2003/06/02 23:32:09 millert Exp $ +.\" $OpenBSD: sleep.1,v 1.14 2007/02/06 20:07:15 jmc Exp $ .\" $NetBSD: sleep.1,v 1.9 1995/07/25 19:37:43 jtc Exp $ .\" .\" Copyright (c) 1990, 1993, 1994 @@ -62,8 +62,7 @@ utility): .Pp To repetitively run a command (with .Xr csh 1 ) : -.Pp -.Bd -literal -offset indent -compact +.Bd -literal -offset indent while (! -r zzz.rawdata) sleep 300 end @@ -87,8 +86,7 @@ by sleeping 70 seconds between each job. .Pp To monitor the growth of a file without consuming too many resources: -.Pp -.Bd -literal -offset indent -compact +.Bd -literal -offset indent while true; do ls -l file sleep 5 |