এটি করা উচিত (gnu dd তে):
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'.
পিএস: আমি বুঝতে পেরেছি যে এই প্রশ্নটি পুরানো এবং মনে হচ্ছে এই পতাকাগুলি মূলত প্রশ্নটি জিজ্ঞাসা করার পরে প্রয়োগ করা হয়েছিল, তবে যেহেতু এটি সম্পর্কিত কোনও ডিডি অনুসন্ধানের জন্য প্রথম গুগলের ফলাফলগুলির মধ্যে একটি, তবে আমি নতুনটির সাথে আপডেট করা ভাল লাগবে যদিও বৈশিষ্ট্য।