Bash脚本根据执行它的内容而不同



我有一个bash脚本,它充当自动服务器的后处理脚本,将变量传递给重命名为FileBot的媒体。

脚本:

#!/bin/bash
TORRENT_NAME=$1
TORRENT_PATH=$2
TORRENT_LABEL=$3
TORRENT_KIND=$4
TORRENT_TITLE=$5
/usr/share/filebot/bin/filebot.sh -script fn:amc --output "/mnt/Storage/" 
   --log-file "amc.log" --action move --conflict override -non-strict 
   --def music=n subtitles=en artwork=n xbmc="192.168.0.123" deleteAfterExtract=y 
     clean=y "ut_dir=$TORRENT_PATH" "ut_file=$TORRENT_NAME" "ut_kind=$TORRENT_KIND" 
    "ut_title=$TORRENT_TITLE" "ut_label=$TORRENT_LABEL" "ut_state=5" "seriesFormat=TV 
    Shows/{n}/Season {s.pad(2)}/{n} - {s00e00} - {t}" "movieFormat=Movies/{n} ({y})/{n} ({y})" 
 &>> /home/xbmc/run.log

如果我手动运行这个脚本,它会按预期工作,但是当uTorrent执行它时,它会通过stderr返回"No such file or directory."。我最初让uTorrent直接调用这个脚本,但我遇到了同样的问题。

有人知道是什么原因造成的吗?

UPDATE(所有目录/文件夹的权限):

drwxr-xr-x   3 root root 4096 Nov 27 23:52 /home  
drwxr-xr-x  20 xbmc xbmc 4096 Dec 15 21:46 /home/xbmc  
drwxr-xr-x  10 root root 4096 Oct 17 06:51 /usr  
drwxr-xr-x 218 root root 4096 Dec 13 15:32 /usr/share  
drwxr-xr-x   3 root root 4096 Dec 15 15:55 /usr/share/filebot  
drwxr-xr-x   2 root root 4096 Dec 15 18:56 /usr/share/filebot/bin  
-rwxr-xr-x 1 xbmc xbmc 615 Dec 15 21:44 /home/xbmc/run.sh  
-rwxr-xr-x 1 root root 552 Dec 15 18:56 /usr/share/filebot/bin/filebot.sh  

更改当前工作目录。

如果filebot.sh不是这样的文件,我建议你尝试一下:

    chmod -R a+x /usr/share/filebot/bin/filebot.sh

如果是你的run.sh,

    chmod -R a+x /home/xbmc/run.sh

您可以尝试以所有者身份运行filebot.sh。我认为值得一试。

    chown YOURUSERNAME /usr/share/filebot/bin/filebot.sh
    chmod u+s /usr/share/filebot/bin/filebot.sh

相关内容

  • 没有找到相关文章

最新更新