Tr

DD(1) - General Commands Manual

Cp, Tr, Mt, Dd

DD(1) - General Commands Manual # DD(1) - General Commands Manual NAME # dd - convert and copy a file SYNOPSIS # dd [operand …] DESCRIPTION # The dd utility copies the standard input to the standard output, applying any specified conversions. Input data is read and written in 512-byte blocks. If input reads are short, input from multiple reads are aggregated to form the output block. When finished, dd displays the number of complete and partial input and output blocks and truncated input records to the standard error output. ...

TR(1) - General Commands Manual

Sed, Tr

TR(1) - General Commands Manual # TR(1) - General Commands Manual NAME # tr - translate characters SYNOPSIS # tr [-Ccs] string1 string2 tr [-Cc] -d string1 tr [-Cc] -s string1 tr [-Cc] -ds string1 string2 DESCRIPTION # The tr utility copies the standard input to the standard output with substitution or deletion of selected characters. The options are as follows: -C Complements the set of characters in string1; for instance, “-C ab” includes every character except for ‘a’ and ‘b’. ...