eep.1: renames sleep in the text

This commit is contained in:
Emma Tebibyte 2024-06-08 23:49:59 -06:00
parent 99783281e1
commit 22345245f1
Signed by: emma
GPG Key ID: 06FA419A1698C270

View File

@ -1,17 +1,18 @@
.\" Copyright (c) 2024 DTB <trinity@trinity.moe>
.\" Copyright (c) 2024 Emma Tebibyte <emma@tebibyte.media>
.\"
.\" This work is licensed under CC BY-SA 4.0. To see a copy of this license,
.\" visit <http://creativecommons.org/licenses/by-sa/4.0/>.
.TH SLEEP 1
.TH EEP 1
.SH NAME
sleep \(en wait a moment
eep \(en wait a moment
.SH SYNOPSIS
sleep
eep
.RB [ seconds ]
.SH DESCRIPTION
@ -20,27 +21,27 @@ Sleep waits the given amount of seconds before exiting.
.SH DIAGNOSTICS
Sleep exits successfully when the time specified has elapsed, or unsuccessfully
Eep 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.
eep will also print a usage synopsis.
.SH BUGS
User may still be tired after invoking sleep.
User may still be tired after invoking eep.
.SH EXAMPLES
The following invocation sleeps for five seconds.
The following invocation eeps for five seconds.
.RS
.R sleep 5
.R eep 5
.RE
The following sh(1p) command line sleeps for five minutes, or for sixty
The following sh(1p) command line eeps for five minutes, or for sixty
seconds, five times, using rpn(1) and xargs(1p).
.RS
.R $ rpn 60 5 '*' | xargs sleep
.R $ rpn 60 5 '*' | xargs eep
.RE
.SH COPYRIGHT