From 7f59c3b6170276b4a7520c4610c0d020956ce04b Mon Sep 17 00:00:00 2001 From: DTB Date: Wed, 8 May 2024 07:56:07 -0600 Subject: [PATCH] Remove sleep(1)s man page; see the POSIX man page --- docs/sleep.1 | 53 ---------------------------------------------------- 1 file changed, 53 deletions(-) delete mode 100644 docs/sleep.1 diff --git a/docs/sleep.1 b/docs/sleep.1 deleted file mode 100644 index 5b7108b..0000000 --- a/docs/sleep.1 +++ /dev/null @@ -1,53 +0,0 @@ -.\" Copyright (c) 2024 DTB -.\" -.\" This work is licensed under CC BY-SA 4.0. To see a copy of this license, -.\" visit . - -.TH SLEEP 1 - -.SH NAME - -sleep \(en wait a moment - -.SH SYNOPSIS - -sleep -.RB [ seconds ] - -.SH DESCRIPTION - -Sleep waits the given amount of seconds before exiting. - -.SH DIAGNOSTICS - -Sleep exits successfully when the time specified has elapsed, or unsuccessfully -if the time fails to elapse or if invoked incorrectly. In the latter scenario -sleep will also print a usage synopsis. - -.SH BUGS - -User may still be tired after invoking sleep. - -.SH EXAMPLES - -The following invocation sleeps for five seconds. - -.RS -.R sleep 5 -.RE - -The following sh(1p) command line sleeps for five minutes, or for sixty -seconds, five times, using rpn(1) and xargs(1p). - -.RS -.R $ rpn 60 5 '*' | xargs sleep -.RE - -.SH COPYRIGHT - -Copyright (c) 2024 DTB. License AGPLv3+: GNU AGPL version 3 or later -. - -.SH SEE ALSO - -sleep(3)