gpt4 book ai didi

linux - 如何在 Linux shell 中检查文件是否只包含零?

转载 作者:IT王子 更新时间:2023-10-28 23:52:53 32 4
gpt4 key购买 nike

如何在 Linux 中使用 shell 命令检查大文件是否仅包含零字节 ('\0')?我可以为此编写一个小程序,但这似乎有点矫枉过正。

最佳答案

如果您使用的是 bash,您可以使用 read -n 1 在发现非 NUL 字符时提前退出:

<your_file tr -d '\0' | read -n 1 || echo "All zeroes."

用实际文件名替换 your_file

关于linux - 如何在 Linux shell 中检查文件是否只包含零?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20224822/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com