adb shell 判断文件是否有内容
时间: 2023-08-06 16:04:57 浏览: 92
可以使用以下命令来判断文件是否有内容:
```
if [ -s path/to/file ]; then
echo "File has content"
else
echo "File is empty"
fi
```
其中,`-s` 参数表示判断文件是否非空。如果文件有内容,则返回真,否则返回假。在上述命令中,如果文件有内容,则输出 "File has content",否则输出 "File is empty"。
相关问题
adb shell 判断文件是否为空
可以使用以下命令来判断文件是否为空:
```
if [ -s /path/to/file ]; then
echo "File is not empty"
else
echo "File is empty"
fi
```
其中,`-s` 选项可以判断文件是否为空,如果文件大小大于 0,则文件不为空,否则为空。你需要将 `/path/to/file` 替换为你要判断的文件路径。
adb shell 判断文件第一行是否为1
可以使用以下命令来判断文件的第一行是否为1:
```
adb shell "head -n 1 /path/to/file | grep -q '^1$' && echo 'First line is 1' || echo 'First line is not 1'"
```
该命令首先使用 `head` 命令获取文件的第一行,然后使用 `grep` 命令判断第一行是否为1。如果第一行为1,则输出 "First line is 1",否则输出 "First line is not 1"。
阅读全文