sh 파일에서 실행할 때 쉘 스크립트를 찾을 수 없음 오류가 발생합니다. 하지만 수동으로 명령을 입력하면 작동합니다.

sh 파일에서 실행할 때 쉘 스크립트를 찾을 수 없음 오류가 발생합니다. 하지만 수동으로 명령을 입력하면 작동합니다.

내 웹사이트에 대한 사이트맵을 생성하기 위해 다음 스크립트를 사용하려고 합니다. 실행하면 sh thsitemap.sh다음 오류가 발생하고 빈 sitemap.xml 파일이 생성됩니다.

thsitemap.sh: 22: thsitemap.sh: [[: not found
thsitemap.sh: 42: thsitemap.sh: [[: not found
thsitemap.sh: 50: thsitemap.sh: Syntax error: "(" unexpected

그러나 동일한 사용자로서 root터미널에 이 줄을 수동으로 복사하여 붙여넣으면 오류 없이 잘 작동하고 sitemap.xml 파일에 모든 URL이 포함됩니다. 문제는 무엇입니까? 이 문제를 어떻게 해결할 수 있나요?

#!/bin/bash
##############################################
# modified version of original http://media-glass.es/ghost-sitemaps/
# for ghost.centminmod.com
# http://ghost.centminmod.com/ghost-sitemap-generator/
##############################################
url="techhamlet.com"
webroot='/home/leafh8kfns/techhamlet.com'
path="${webroot}/sitemap.xml"
user='leafh8kfns'       # web server user
group='leafh8kfns'      # web server group

debug='n' # disable debug mode with debug='n'
##############################################
date=`date +'%FT%k:%M:%S+00:00'`
freq="daily"
prio="0.5"
reject='.rss, .gif, .png, .jpg, .css, .js, .txt, .ico, .eot, .woff, .ttf, .svg, .txt'
##############################################
# create sitemap.xml file if it doesn't exist and give it same permissions
# as nginx server user/group
if [[ ! -f "$path" ]]; then
    touch $path
    chown ${user}:${group} $path
fi

# check for robots.txt defined Sitemap directive
# if doesn't exist add one
# https://support.google.com/webmasters/answer/183669
if [ -f "${webroot}/robots.txt" ]; then
SITEMAPCHECK=$(grep 'Sitemap:' ${webroot}/robots.txt)
    if [ -z "$SITEMAPCHECK" ]; then
    echo "Sitemap: http://${url}/sitemap.xml" >> ${webroot}/robots.txt
    fi
fi
##############################################
echo "" > $path

# grab list of site urls
list=`wget -r --delete-after $url --reject=${reject} 2>&1 |grep "\-\-"  |grep http | grep -v 'normalize\.css' | awk '{ print $3 }'`

if [[ "$debug" = [yY] ]]; then
    echo "------------------------------------------------------"
    echo "Following list of urls will be submitted to Google"
    echo $list
    echo "------------------------------------------------------"
fi

# put list into an array
array=($list)

echo "------------------------------------------------------"
echo ${#array[@]} "pages detected for $url" 
echo "------------------------------------------------------"

# formatted properly according to
# https://support.google.com/webmasters/answer/35738
echo "<?xml version=\"1.0\" encoding=\"UTF-8\"?>
<urlset xsi:schemaLocation=\"http://www.sitemaps.org/schemas/sitemap/0.9 
http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"
xmlns=\"http://www.sitemaps.org/schemas/sitemap/0.9\">" > $path

echo ' 
   ' >> $path;
   for ((i=0;i<${#array[*]};i++)); do
echo "<url>
    <loc>${array[$i]:0}</loc>
    <lastmod>$date</lastmod>
    <changefreq>$freq</changefreq>
    <priority>$prio</priority>
</url>" >> $path
   done
echo "" >> $path
echo "</urlset>" >> $path

# notify Google
# URL encode urls as per https://support.google.com/webmasters/answer/183669
if [[ "$debug" = [nN] ]]; then
    wget  -q --delete-after http://www.google.com/webmasters/tools/ping?sitemap=http%3A%2F%2F${url}%2Fsitemap.xml

    rm -rf ${url}
else
    echo "wget  -q --delete-after http://www.google.com/webmasters/tools/ping?sitemap=http%3A%2F%2F${url}%2Fsitemap.xml"

    echo "rm -rf ${url}"
fi
echo "------------------------------------------------------"

exit 0

답변1

다음과 같이 스크립트를 실행합니다.

bash script.sh

그렇지 않으면:

./script.sh

bash이름으로 실행 하면 테스트 연산자 sh와 같은 대부분의 확장이 비활성화됩니다 .[[

shebang 라인이 있으므로 #!/bin/bash명령줄에서 쉘 인터프리터를 명시적으로 지정할 필요가 없습니다. 스크립트를 명령으로 실행하면 이 줄을 사용하여 셸을 찾습니다.

답변2

귀하의... if [[ debug = "...“ ]] ; then...명령 중 어느 것도 정확하지 않습니다. 읽어야 합니다...

if [ "debug" = "Y" -o "debug" = "y" ]

관련 정보