当前位置: 技术问答>linux和unix
/dev/zero产生全0的文件,那么全1的文件怎么产生?
来源: 互联网 发布时间:2017-04-20
本文导语: linux下有什么命令可以制作全1的文件 | 起先我遇到这个问题,在csdn请教,得到如下方法: #!/bin/sh # This script is used to generate a file only contains 0xFF. # And its size is 8192. n=81920 while [ ...
linux下有什么命令可以制作全1的文件
|
起先我遇到这个问题,在csdn请教,得到如下方法:
后来搜索网络,发现水木的帖子:
http://www.newsmth.net/nForum/#!article/LinuxApp/857984
里面各路牛人贡献了至少四种方法,我服了!
dd if=/dev/zero bs=1 count=200 | sed 's/x00/xff/g'
tr '00' '377' $@.tmp
printf '%*s' 2048 ' ' | tr ' ' '377'
#!/bin/sh
# This script is used to generate a file only contains 0xFF.
# And its size is 8192.
n=81920
while [ $n -ne 0 ];
do
echo -e '377c' >> FF.bin
((n=n-1))
done
后来搜索网络,发现水木的帖子:
http://www.newsmth.net/nForum/#!article/LinuxApp/857984
里面各路牛人贡献了至少四种方法,我服了!
dd if=/dev/zero bs=1 count=200 | sed 's/x00/xff/g'
tr '00' '377' $@.tmp
printf '%*s' 2048 ' ' | tr ' ' '377'