1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 01:47:34 +00:00

Base: Update man pages for utilities

Man pages for utilities now more closely resemble ArgsParser output
This commit is contained in:
Tim Ledbetter 2023-03-30 22:57:12 +01:00 committed by Sam Atkins
parent 37bbd20cee
commit 8f253a745e
28 changed files with 89 additions and 15 deletions

View file

@ -18,10 +18,16 @@ $ dd if=[input_file] of=[output_file] [args...]
## Arguments
* `if`: input file (or device) to read from
* `of`: output file (or device) to write to
* `bs`: block size (of bytes) to use
* `if`: input file (or device) to read from (default: stdin)
* `of`: output file (or device) to write to (default: stdout)
* `bs`: block size (of bytes) to use (default: 512)
* `count`: number of blocks to write
* `seek`: number of output blocks to skip (default: 0)
* `skip`: number of input blocks to skip (default: 0)
* `status`: level of output (default: default)
* `default`: error messages + final statistics
* `none`: just error messages
* `noxfer`: no final statistics
## Examples