diff --git a/Documentation/NuttShell.html b/Documentation/NuttShell.html index a2a4a7c5b3f..9418056eb9e 100644 --- a/Documentation/NuttShell.html +++ b/Documentation/NuttShell.html @@ -754,14 +754,50 @@ dd if=<infile> of=<outfile> [bs=<sectsize>] [count=<sectors

Synopsis. - Copy blocks from <infile> to <outfile>. As an example: + Copy blocks from <infile> to <outfile>. + <infile> or <outfile> may be the path to a standard file, a character device, or a block device. + Examples follow: +

+
    +
  1. + Read from character device, write to regular file. + This will create a new file of the specified size filled with zero. -

    +
  2. +
  3. + Read from character device, write to block device. + This will fill the entire block device with zeros. +
  4. + + +
  5. + Read from a block devic, write to a character device. This + will read the entire block device and dump the contents in + the bit bucket. +
  6. + + +