mirror of
https://github.com/RGBCube/serenity
synced 2025-07-28 12:37:44 +00:00
Base: Add more manpages for command-line utilities
This commit is contained in:
parent
5d8585df97
commit
57340dda36
25 changed files with 749 additions and 0 deletions
41
Base/usr/share/man/man1/yes.md
Normal file
41
Base/usr/share/man/man1/yes.md
Normal file
|
@ -0,0 +1,41 @@
|
|||
## Name
|
||||
|
||||
yes - output a string repeatedly until killed
|
||||
|
||||
## Synopsis
|
||||
|
||||
```**sh
|
||||
$ yes [string]
|
||||
```
|
||||
|
||||
## Description
|
||||
|
||||
`yes` outputs an endless stream of specified `string` (with trailing newline) in a loop.
|
||||
|
||||
## Options
|
||||
|
||||
* `string`: String to print; defaults to "yes".
|
||||
|
||||
## Examples
|
||||
|
||||
```sh
|
||||
$ yes
|
||||
yes
|
||||
yes
|
||||
yes
|
||||
yes
|
||||
yes
|
||||
yes
|
||||
yes^C
|
||||
$ yes t
|
||||
t
|
||||
t
|
||||
t
|
||||
t
|
||||
t
|
||||
t
|
||||
t
|
||||
t
|
||||
t
|
||||
t^C
|
||||
```
|
Loading…
Add table
Add a link
Reference in a new issue