Museum

Home

Lab Overview

Retrotechnology Articles

⇒ Online Manual

Media Vault

Software Library

Restoration Projects

Artifacts Sought

Related Articles

cp(1)

tr(1V)

DD(1)  —  USER COMMANDS

NAME

dd − convert and copy a file

SYNOPSIS

dd [option=value] ...

DESCRIPTION

dd copies a specified input file to a specified output with possible conversions.  The standard input and output are used by default.  The input and output block size may be specified to take advantage of raw physical I/O. 

     OPTION VALUES

if=name input file is taken from name; standard input is default.

of=name output file is taken from name; standard output is default.  Note that dd creates an explicit output file; therefore the seek option is usually useless with explicit output except in special cases such as using magnetic tape or raw disk files. 

ibs=n input block size n bytes (default 512). 

obs=n output block size n bytes (default 512). 

bs=n set both input and output block size, superseding ibs and obs; also, if no conversion is specified, it is particularly efficient since no copy need be done

cbs=n conversion buffer size

skip=n skip n input records before starting copy

files=n copy n input files before terminating (makes sense only when input is a magtape or similar device). 

seek=n seek n records from beginning of output file before copying.  This option generally only works with magnetic tapes and raw disk files and is otherwise usually useless if the explicit output file was named with the of option. 

count=n copy only n input records

conv=ascii convert EBCDIC to ASCII

ebcdicconvert ASCII to EBCDIC

ibmslightly different map of ASCII to EBCDIC

blockconvert variable length records to fixed length

unblockconvert fixed length records to variable length

lcasemap alphabetics to lower case

ucasemap alphabetics to upper case

swabswap every pair of bytes

noerrordo not stop processing on an error

syncpad every input record to ibs

... , ...several comma-separated conversions

Where sizes are specified, a number of bytes is expected.  A number may end with k (kilobytes) to specify multiplication by 1024, b (blocks of 512 bytes) to specify multiplication by 512, or w (words) to specify multiplication by 4; a pair of numbers may be separated by x to indicate a product. 

Cbs is used only if ascii, unblock, ebcdic, ibm, or block conversion is specified.  In the first two cases, cbs characters are placed into the conversion buffer, any specified character mapping is done, trailing blanks trimmed and new-line added before sending the line to the output.  In the latter three cases, characters are read into the conversion buffer, and blanks added to make up an output record of size cbs. 

After completion, dd reports the number of whole and partial input and output blocks. 

EXAMPLE

To read an EBCDIC tape blocked ten 80-byte EBCDIC card images per record into the ASCII file x:

tutorial% dd if=/dev/rmt0 of=x ibs=800 cbs=80 conv=ascii,lcase

Note the use of raw magtape: dd is especially suited to I/O on the raw physical devices because it allows reading and writing in arbitrary record sizes. 

SEE ALSO

cp(1), tr(1V)

DIAGNOSTICS

f+p records in(out): numbers of full and partial records read(written)

BUGS

The ASCII/EBCDIC conversion tables are taken from the 256 character standard in the CACM Nov, 1968.  The ibm conversion, while less blessed as a standard, corresponds better to certain IBM print train conventions.  There is no universal solution. 

The block and unblock options cannot be combined with the ascii, ebcdic or ibm.  Invalid combinations silently ignore all but the last mutually-exclusive keyword. 

Sun Release 3.2  —  Last change: 23 September 1985

Typewritten Software • bear@typewritten.org • Edmonds, WA 98026