所以我正在尝试检查文件是否存在,然后脚本应该执行某些操作。我遇到的问题实际上是让它认识到实际存在的东西。
if [ -e /temp/file.txt ]; then
echo "file found!"
sudo cp -r temp/* extra
else
echo "file not found! Creating new one..."
./create.sh
fi
下面的是我正在测试的目录中的文件示例。它们显然存在,但由于某种原因,我无法让脚本看到它。我做错了什么?
nima@mkt:/docs/text$ ls -a temp
. .. more file.txt file2.txt
答案 0 :(得分:11)
在使用相对路径时,您在测试中使用绝对路径:
if [ -e ./temp/file.txt ]; then
答案 1 :(得分:2)
/temp/file.txt
vs /docs/text/temp/file.txt
?
答案 2 :(得分:1)
当您查看/temp
/docs/text/temp
中查找