As outras respostas já explicaram isso, mas se você tiver alguma dúvida, pode ver o que dd
faz strace
.
$ strace dd if=/dev/urandom bs=4096 seek=7 count=2 of=file_with_holes
# output is shortened considerably
open("/dev/urandom", O_RDONLY) = 0
open("file_with_holes", O_RDWR|O_CREAT, 0666) = 1
ftruncate(1, 28672) = 0
lseek(1, 28672, SEEK_CUR) = 28672
read(0, "\244\212\222v\25\342\346\226\237\211\23\252\303\360\201\346@\351\6c.HF$Umt\362;E\233\261"..., 4096) = 4096
write(1, "\244\212\222v\25\342\346\226\237\211\23\252\303\360\201\346@\351\6c.HF$Umt\362;E\233\261"..., 4096) = 4096
read(0, "~\212q\224\256\241\277\344V\204\204h\312\25pw9\34\270WM\267\274~\236\313|{\v\6i\22"..., 4096) = 4096
write(1, "~\212q\224\256\241\277\344V\204\204h\312\25pw9\34\270WM\267\274~\236\313|{\v\6i\22"..., 4096) = 4096
close(0) = 0
close(1) = 0
write(2, "2+0 records in\n2+0 records out\n", 312+0 records in
2+0 records out
) = 31
write(2, "8192 bytes (8.2 kB) copied", 268192 bytes (8.2 kB) copied) = 26
write(2, ", 0.00104527 s, 7.8 MB/s\n", 25, 0.00104527 s, 7.8 MB/s
) = 25
+++ exited with 0 +++
Abre /dev/urandom
para leitura ( if=/dev/urandom
), abre file_with_holes
para criar / escrever ( of=file_with_holes
).
Em seguida, trunca file_with_holes
para 4096*7
= 28672
bytes ( bs=4096 seek=7
). O truncado significa que o conteúdo do arquivo após essa posição é perdido. (Adicione conv=notrunc
para evitar esta etapa). Então ele procura 28672
bytes.
Em seguida, ele lê 4096
bytes ( bs=4096
usados como ibs
) de /dev/urandom
, grava 4096
bytes ( bs=4096
usados como obs
) em file_with_holes
, seguidos por outra leitura e gravação ( count=2
).
Em seguida, fecha /dev/urandom
, fecha file_with_holes
e imprime que copiou 2*4096
= 8192
bytes. Finalmente, sai sem erro (0).