大家好~我是shell script 新手
最近寫一個小程式,是尋找有沒有目錄檔,可是執行都錯誤,不知道哪裡有錯
有網站在教語法這方面嗎? 謝謝
我在 /建一個目錄program 並在目錄下寫一個sh檔,是找有沒有var目錄,有的話就
echo,但我執行程式 sh find.sh 產生以下問題,不知道是甚麼問題哪裡寫錯!
find.sh: line 11: if[-e /var]: 沒有此一檔案或目錄
find.sh: line 13: syntax error near unexpected token `then'
find.sh: line 13: `then'
請問要怎麼直接 打/program/find.sh 就可以執行程式,不用再切換到program檔
再打sh find.sh 謝謝
#!/bin/bash
#program:
#use rsync copy webmailinfomation
#history:
#2017/09/21
PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:~/bin
export PATH
File="/var"
if[-e $File]
then
echo $File
else
echo "hi"
fi