mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 19:38:12 +00:00
Base: Add man page for the dd command
Base: Add man page for the dd command
This commit is contained in:
parent
bd40464195
commit
a3423f2af2
1 changed files with 30 additions and 0 deletions
30
Base/usr/share/man/man1/dd.md
Normal file
30
Base/usr/share/man/man1/dd.md
Normal file
|
@ -0,0 +1,30 @@
|
|||
## Name
|
||||
|
||||
dd - copy blocks of data
|
||||
|
||||
## Synopsis
|
||||
|
||||
```**sh
|
||||
$ dd if=[input_file] of=[output_file] [args...]
|
||||
```
|
||||
|
||||
## Description
|
||||
|
||||
`dd` is an application used to write blocks of data from one file to another. A common use case for `dd` is to make a bootable hard drive from a ISO file.
|
||||
|
||||
## Options
|
||||
|
||||
* `--help`: Display help message and exit
|
||||
|
||||
## Arguments
|
||||
|
||||
* `if`: input file (or device) to read from
|
||||
* `of`: output file (or device) to write to
|
||||
* `bs`: block size (of bytes) to use
|
||||
* `count`: number of blocks to write
|
||||
|
||||
## Examples
|
||||
|
||||
```**sh
|
||||
$ dd if=/dev/zero of=./zeros bs=1M count=1
|
||||
```
|
Loading…
Add table
Add a link
Reference in a new issue