因此,我試圖檢查一個文件是否存在,然後該腳本應該做一些事情,如果是的話。我遇到的問題實際上是讓它認識到事實確實存在。檢查文件是否存在Linux bash
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
下面是我正在測試的目錄中的文件的示例。他們顯然存在,但由於某種原因,我無法看到腳本。我究竟做錯了什麼?
[email protected]:/docs/text$ ls -a temp
. .. more file.txt file2.txt
看來我是沒有正確拼寫的目錄。 thx無論如何幫助:P – Painguy