将 n 字节数据 x 复制到文件
例如,我们如何将 10 个字节的“7”复制到文件中?
我如何生成这 10 个字节的 7?
例如,对于 n 个字节的零,我正在执行 dd if=/dev/zero of=myFile bs=1 count=10。
How we can copy for example 10 bytes of '7' to a file?
How can I generate those 10 bytes of 7?
For example for n bytes of zero I'm doing dd if=/dev/zero of=myFile bs=1 count=10
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以将零发送到标准输出并将它们转换为 7,或者您喜欢的任何值。
You can send the zeros to stdout and translate them to 7, or what ever you like.
将
echo
输出重定向到dd
或者
如果您需要 7 的二进制表示
redirect an
echo
output todd
or
if you need the binary representation of 7
答:“dd”当然是可以选择的。许多之一:)
答:随你怎么想。例如,您可以编写一个C程序:
A: "dd" is certainly on option. One of many :)
A: However you want. For example, you can write a C program: