最佳答案
这将检查文件是否存在:
#!/bin/bash
FILE=$1if [ -f $FILE ]; thenecho "File $FILE exists."elseecho "File $FILE does not exist."fi
如何仅检查文件是否存在没有?