检查linux脚本中是否存在文件

时间:2013-11-22 15:24:43

标签: linux bash shell unix

我创建了一个linux脚本,它接收一个目录路径作为第一个参数。我不知道这条路。我想检查某个路径上是否存在“file.txt”。例如:

if [ -e $1/file.txt ];then
       echo HAHA
fi

1 个答案:

答案 0 :(得分:4)

if [[ -e "$1/file.txt" ]]; then
       echo "It exists"
fi