~ubuntu-branches/ubuntu/utopic/coreutils/utopic-proposed

« back to all changes in this revision

Viewing changes to man/dd.1

  • Committer: Package Import Robot
  • Author(s): Colin Watson
  • Date: 2012-11-28 03:03:42 UTC
  • mfrom: (8.3.4 sid)
  • Revision ID: package-import@ubuntu.com-20121128030342-21zanj8354gas5gr
Tags: 8.20-3ubuntu1
* Resynchronise with Debian.  Remaining changes:
  - Make 'uname -i -p' return the real processor/hardware, instead of
    unknown.
  - Build-depend on gettext:any instead of on gettext, so that apt-get can
    properly resolve build-dependencies on the tool when cross-building.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
.\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.35.
2
 
.TH DD "1" "September 2011" "GNU coreutils 8.12.197-032bb" "User Commands"
 
2
.TH DD "1" "October 2012" "GNU coreutils 8.20" "User Commands"
3
3
.SH NAME
4
4
dd \- convert and copy a file
5
5
.SH SYNOPSIS
22
22
conv=CONVS
23
23
convert the file as per the comma separated symbol list
24
24
.TP
25
 
count=BLOCKS
26
 
copy only BLOCKS input blocks
 
25
count=N
 
26
copy only N input blocks
27
27
.TP
28
28
ibs=BYTES
29
29
read up to BYTES bytes at a time (default: 512)
43
43
oflag=FLAGS
44
44
write as per the comma separated symbol list
45
45
.TP
46
 
seek=BLOCKS
47
 
skip BLOCKS obs\-sized blocks at start of output
48
 
.TP
49
 
skip=BLOCKS
50
 
skip BLOCKS ibs\-sized blocks at start of input
51
 
.TP
52
 
status=noxfer
53
 
suppress transfer statistics
 
46
seek=N
 
47
skip N obs\-sized blocks at start of output
 
48
.TP
 
49
skip=N
 
50
skip N ibs\-sized blocks at start of input
 
51
.TP
 
52
status=WHICH
 
53
WHICH info to suppress outputting to stderr;
 
54
\&'noxfer' suppresses transfer stats, 'none' suppresses all
54
55
.PP
55
 
BLOCKS and BYTES may be followed by the following multiplicative suffixes:
 
56
N and BYTES may be followed by the following multiplicative suffixes:
56
57
c =1, w =2, b =512, kB =1000, K =1024, MB =1000*1000, M =1024*1024, xM =M
57
58
GB =1000*1000*1000, G =1024*1024*1024, and so on for T, P, E, Z, Y.
58
59
.PP
79
80
ucase
80
81
change lower case to upper case
81
82
.TP
 
83
sparse
 
84
try to seek rather than write the output for NUL input blocks
 
85
.TP
82
86
swab
83
87
swap every pair of input bytes
84
88
.TP
138
142
.TP
139
143
nofollow
140
144
do not follow symlinks
 
145
.TP
 
146
count_bytes
 
147
treat 'count=N' as a byte count (iflag only)
 
148
.TP
 
149
skip_bytes
 
150
treat 'skip=N' as a byte count (iflag only)
 
151
.TP
 
152
seek_bytes
 
153
treat 'seek=N' as a byte count (oflag only)
141
154
.PP
142
 
Sending a USR1 signal to a running `dd' process makes it
 
155
Sending a USR1 signal to a running 'dd' process makes it
143
156
print I/O statistics to standard error and then resume copying.
144
157
.IP
145
158
\f(CW$ dd if=/dev/zero of=/dev/null& pid=$!\fR
168
181
.br
169
182
Report dd translation bugs to <http://translationproject.org/team/>
170
183
.SH COPYRIGHT
171
 
Copyright \(co 2011 Free Software Foundation, Inc.
 
184
Copyright \(co 2012 Free Software Foundation, Inc.
172
185
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
173
186
.br
174
187
This is free software: you are free to change and redistribute it.