Check if a file exists in a linux script
我编写了一个Linux脚本,它作为第一个参数接收到一个目录的路径。我不知道这条路。我想检查"file.txt"是否存在于那个特定的路径上。例如:
1 2 3
| if [ -e $1/file.txt ];then
echo HAHA
fi |
- [[ -f"$1/file.txt" ]] && echo"HAHA"应该工作。
- 只要$1不包含任何空白,您所拥有的内容就应该按预期工作。引用"$1/file.txt"可以解决这个问题。
1 2 3
| if [[ -e"$1/file.txt" ]]; then
echo"It exists"
fi |