Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这可能很明显,但谷歌似乎让我失望了。我需要在 Unix(AIX,ksh)上创建一个具有任意名称的零字节文件。有什么好的命令可以做到这一点。我显然可以编写脚本。
只是要清楚我没有做任何愚蠢的事情。这是生成某些测试场景的脚本。(检查处理 0 字节文件时的正确行为。)
我想到了。
touch $filename会做的。
touch $filename
保存您的击键和不必要的过程,重定向将:
$ > file $ ls file
使用dd:
dd
dd if=/dev/null of=zero.out bs=0 count=0