我有一个cron作业,现在将其输出重定向到文件中。看起来像下面0 9 * * * /bin/sh /bin/cleanup.sh > /home/darkknight/cleanup.log
有人可以帮助我将其输出重新分配到stdout吗?
最佳答案
在任何终端上输入tty
,我们将获得该特定终端窗口的设备文件,例如/dev/pts/1
。将cron作业重新命名为该文件cleanup.sh > /dev/pts/1
关于linux - 如何将Cron作业输出重定向到stdout,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/36441312/