Cron 不运行 bash 脚本



我有cron

shell =/bin/bash

路径=/usr/local/sbin:/usr/locar/bin:/sbin:/bin:/bin:/usr/sbin:/usr/bin/bin

* * * * * root  /usr/bin/flock -xn /var/lock/script.lock -c '/bin/bash /root/Dropbox/1.sh'

我的1.sh

#!/bin/bash -l 
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin 
x=1
while [ $x -le 3 ] 
do 
URL=$(head -n 1 /root/Dropbox/query.txt) 
lynx -dump  $URL | egrep '^http' > /root/Dropbox/urls.txt 
x=$(( $x + 1 )) 
done

bash作为默认值

#echo $ shell

/bin/bash

为什么cron不运行1.sh?

在线crontab行中删除" root":

* * * * * /usr/bin/flock -xn /var/lock/script.lock -c '/bin/bash /root/Dropbox/1.sh'

如果您需要将root用户的crontab放置在root用户的crontab中。
使用" root",您还将在syslog或消息日志中找到错误。

当然,请确保 cron守护程序正在运行:ps -ef |grep cron

add:我已经用简单的触摸文件(在Ubuntu上)对其进行了测试:
续线:

* * * * * /usr/bin/flock -xn /var/lock/script.lock -c '/bin/bash ~/1.sh'

1.SH:

#!/bin/bash
touch /tmp/hallo

add :(查看lynx命令)1.sh脚本的版本对我有用。

#!/bin/bash
x=1
while [ $x -le 3 ]
do
URL="http://www.subir.com/lynx.html"
lynx -dump  $URL | egrep '.*. http' > urls.txt
x=$(( $x + 1 ))
done

我更改了Egrep上的正则罚款。您的lynx输出可能不同(其他版本的lynx)。我使用了固定的测试URL(Lynx Man页面)。urls.txt将被填充。脚本是由Cron触发的。下一次运行将在循环逻辑中没有效果。

会更改。
stephan@coppi:~$ more urls.txt 
   1. http://lynx.isc.org/current/index.html
   2. http://lynx.isc.org/current/lynx2-8-8/lynx_help/lynx_help_main.html
   3. http://lynx.isc.org/current/lynx2-8-8/lynx_help/Lynx_users_guide.html
   4. http://lynx.isc.org/lynx2.8.7/index.html
   5. http://lynx.isc.org/lynx2.8.7/lynx2-8-7/lynx_help/lynx_help_main.html
   6. http://lynx.isc.org/lynx2.8.7/lynx2-8-7/lynx_help/Lynx_users_guide.html
   7. http://lynx.isc.org/mirrors.html
   8. http://lists.nongnu.org/mailman/listinfo/lynx-dev/
   9. http://lynx.isc.org/signatures.html
  10. http://validator.w3.org/check?uri=http%3A%2F%2Flynx.isc.org%2Findex.html

相关内容

  • 没有找到相关文章

最新更新