Bash 스크립트가 crontab에서 작동하지 않습니다

Bash 스크립트가 crontab에서 작동하지 않습니다

나는 다운로드한 것이 있는지 확인하고 다운로드한 경우 스캔해야 하는 Bash 스크립트를 만들려고 합니다. 부팅 시 시작되도록 crontab을 사용했지만 해당 부분이 작동하지 않습니다.

이것은 내 코드입니다.

#!/bin/bash

inotifywait ~/Downloads -m -r -e modify -e moved_to --format '%w%f' | while read file
do
    $(clamscan --bell --recursive --max-filesize=99999 --log log/myLogs.txt $file)
    CLAMSCAN="$?"

    if [ $CLAMSCAN -eq 1 ]; then
        $(xmessage -buttons Ok:0,"Remove":1,"View Logs":2 -default Ok -center "Infected file: $file is found...")
        CHOICE="$?"

        if [ $CHOICE -eq 1 ]; then
            $(rm -r $file)
        elif [ $CHOICE -eq 2 ]; then
            $(xmessage -buttons Ok:0 -default Ok -center -file log/myLogs.txt)
        fi      
    fi
done

내 일정:

# Edit this file to introduce tasks to be run by cron.
# 
# Each task to run has to be defined through a single line
# indicating with different fields when the task will be run
# and what command to run for the task
# 
# To define the time you can provide concrete values for
# minute (m), hour (h), day of month (dom), month (mon),
# and day of week (dow) or use '*' in these fields (for 'any').# 
# Notice that tasks will be started based on the cron's system
# daemon's notion of time and timezones.
# 
# Output of the crontab jobs (including errors) is sent through
# email to the user the crontab file belongs to (unless redirected).
# 
# For example, you can run a backup of all your user accounts
# at 5 a.m every week with:
# 0 5 * * 1 tar -zcf /var/backups/home.tgz /home/
# 
# For more information see the manual pages of crontab(5) and cron(8)
# 
# m h  dom mon dow   command
SHELL=/bin/sh
@reboot sh $HOME/.custom_security/Downloads_sec.sh

디렉토리를 "/"로 변경한 후 실행하면 sh $HOME/.custom_security/Downloads_sec.sh다음 오류가 발생합니다.

    Setting up watches.  Beware: since -r was given, this may take a while!
Watches established.
ERROR: Can't open log/myLogs.txt in append mode (check permissions!).
ERROR: Problem with internal logger.

이 스크립트는 독립형 스크립트로 잘 작동합니다!

답변1

문제는 다음 줄에 있습니다.

clamscan --bell --recursive --max-filesize=99999 --log log/myLogs.txt $file

그러면 log/myLogs.txt에 쓰기가 시도됩니다. 홈 디렉토리에 있다면 /home/oneill쓰기를 시도할 것입니다 /home/oneill/log/myLogs.txt. 이는 아마도 올바른 위치일 것입니다. 루트 디렉토리에 있는 경우 /쓰기를 시도 /log/myLogs.txt하지만 적절한 권한이 없습니다.

절대 경로를 사용하거나 cd /home/oneill스크립트 시작 부분에 경로를 입력하세요.

관련 정보