dd 命令 - 如何确定 cbs
我有一个 EBCDIC 格式的输入文件。我不知道该文件中有多少条记录。那么,如果我想将其转换为 ASCII,ibs、obs 和 cbs 会是什么?
I have a input file in EBCDIC format. I have no idea how many records there are in the file. In that case, if I want to convert it to ASCII, what would be ibs, obs, and cbs?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如今,块大小通常并不重要。如果您实际上正在处理磁带(您知道,旧的 1/2 英寸卷轴来回摇动类型,或者可能是 QIC,四分之一英寸盒式磁带),那么块大小很重要。当使用磁盘时,块大小并不重要。
因此,对于 ibs 和 obs,要么保留默认值,要么只使用 bs=16k(或 256k,或任何其他数字),这样 ibs 和 obs 的大小相同。 cbs(转换缓冲区大小)也可能是相同的大小。
The block sizes are generally not crucial these days. If you were actually handling tapes (you know, the old 1/2 inch reels rocking back and forth type, or maybe QIC, quarter-inch cartridge), then block sizes mattered. When playing with disk, the block sizes don't matter very much.
So, for ibs and obs, either leave the default, or just use bs=16k (or 256k, or any other number), which does both ibs and obs at the same size. The cbs (conversion buffer size) could probably be the same size, too.