标签: linux bash shell unix
我创建了一个linux脚本,它接收一个目录路径作为第一个参数。我不知道这条路。我想检查某个路径上是否存在“file.txt”。例如:
if [ -e $1/file.txt ];then echo HAHA fi
答案 0 :(得分:4)
if [[ -e "$1/file.txt" ]]; then echo "It exists" fi