Le altre risposte lo hanno già spiegato, ma se hai dei dubbi, puoi vedere cosa dd
succede 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 +++
Si apre /dev/urandom
per leggere ( if=/dev/urandom
), si apre file_with_holes
per creare / scrivere ( of=file_with_holes
).
Quindi si tronca file_with_holes
in 4096*7
= 28672
bytes ( bs=4096 seek=7
). Il troncamento significa che il contenuto del file dopo quella posizione viene perso. (Aggiungi conv=notrunc
per evitare questo passaggio). Quindi cerca i 28672
byte.
Quindi legge i 4096
byte ( bs=4096
usati come ibs
) da /dev/urandom
, scrive i 4096
byte ( bs=4096
usati come obs
) su file_with_holes
, seguiti da un altro read e write ( count=2
).
Quindi si chiude /dev/urandom
, si chiude file_with_holes
e stampa che ha copiato 2*4096
= 8192
byte. Alla fine esce senza errori (0).