这是我的 cron 工作:
plee@dragon:~$ crontab -l
* * * * * /bin/bash -l -c 'source ~/.bashrc; echo $EDITOR > /tmp/cronjob.test'
和里面的~/.bashrc
文件,我有export EDITOR=vim
,但在最终的/tmp/cronjob.test
文件中,它仍然是空的?
那么如何获取环境变量(在.bashrc
文件中设置)并在我的 cron 作业中使用它?
plee@dragon:~$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description: Ubuntu 12.04 LTS
Release: 12.04
Codename: precise
plee@dragon:~$ uname -a
Linux dragon 3.2.0-26-generic-pae #41-Ubuntu SMP Thu Jun 14 16:45:14 UTC 2012 i686 i686 i386 GNU/Linux
如果使用这个:
* * * * * /bin/bash -l -c -x 'source ~/.bashrc; echo $EDITOR > /tmp/cronjob.test' 2> /tmp/cron.debug.res
在/tmp/cron.debug.res
:
...
++ return 0
+ source /home/plee/.bashrc
++ '[' -z '' ']'
++ return
+ echo
顺便说一句,该.bashrc
文件是 Ubuntu 12.04 附带的默认文件,除了我添加了一行export EDITOR=vim
.
如果我不使用 cron 作业,则直接在命令行上执行此操作:
source .bashrc; echo $EDITOR # Output: vim