คำตอบอื่น ๆ อธิบายแล้ว แต่ถ้าคุณมีข้อสงสัยคุณสามารถดูสิ่งที่dd
เกิด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 +++
มันเปิดขึ้น/dev/urandom
สำหรับการอ่าน ( if=/dev/urandom
) เปิดfile_with_holes
สำหรับการสร้าง / เขียน ( of=file_with_holes
)
จากนั้นจะตัดทอนfile_with_holes
เป็น4096*7
= 28672
ไบต์ ( bs=4096 seek=7
) การตัดปลายหมายความว่าเนื้อหาไฟล์หลังจากตำแหน่งนั้นหายไป (เพิ่มconv=notrunc
เพื่อหลีกเลี่ยงขั้นตอนนี้) จากนั้นมันจะหา28672
ไบต์
จากนั้นอ่าน4096
ไบต์ ( bs=4096
ใช้เป็นibs
) จาก/dev/urandom
เขียน4096
ไบต์ ( bs=4096
ใช้เป็นobs
) ไปที่file_with_holes
ตามด้วยการอ่านและเขียนอีกครั้ง ( count=2
)
จากนั้นมันจะปิด/dev/urandom
ปิดfile_with_holes
และพิมพ์ว่ามันถูกคัดลอก2*4096
= 8192
ไบต์ ในที่สุดมันก็ออกโดยไม่มีข้อผิดพลาด (0)