इसे करना चाहिए (गन्नू पर):
dd if=somefile bs=4096 skip=1337 count=31337000 iflag=skip_bytes,count_bytes
यदि आप उपयोग कर रहे हैं seek=
तो आप इस पर भी विचार कर सकते हैं oflag=seek_bytes
।
से info dd
:
`count_bytes'
Interpret the `count=' operand as a byte count, rather than a
block count, which allows specifying a length that is not a
multiple of the I/O block size. This flag can be used only
with `iflag'.
`skip_bytes'
Interpret the `skip=' operand as a byte count, rather than a
block count, which allows specifying an offset that is not a
multiple of the I/O block size. This flag can be used only
with `iflag'.
`seek_bytes'
Interpret the `seek=' operand as a byte count, rather than a
block count, which allows specifying an offset that is not a
multiple of the I/O block size. This flag can be used only
with `oflag'.
Ps: मैं समझता हूं कि यह प्रश्न पुराना है और ऐसा लगता है कि ये ध्वज प्रश्न के मूल रूप से पूछे जाने के बाद लागू किए गए थे, लेकिन चूंकि यह मैंने संबंधित dd खोज के लिए पहले Google परिणामों में से एक है, मैंने किया था, हालाँकि इसे नए के साथ अपडेट करना अच्छा होगा सुविधा।