在 shell 中,可以使用 test
命令来查询文件是否存在。例如,要查询文件 /path/to/file
是否存在,可以使用以下命令:
test -e /path/to/file && echo "File exists" || echo "File does not exist"
如果文件存在,则会输出 "File exists";如果文件不存在,则会输出 "File does not exist"。
此外,也可以使用 [ -e /path/to/file ]
来查询文件是否存在。这两种方法都是等价的。
另外,还可以使用 ls
命令来查询文件是否存在。例如,要查询文件 /path/to/file
是否存在,可以使用以下命令:文章来源:https://www.toymoban.com/news/detail-572354.html
ls /path/to/file &> /dev/null && echo "File exists" || echo "File does not exist"
如果文件存在,则会输出 "File exists";如果文件不存在,则会输出 "File does not exist"。文章来源地址https://www.toymoban.com/news/detail-572354.html
到了这里,关于shell 查询文件是否存在的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!