是否有可能确定Linux shell脚本是由用户还是cronjob执行的?
如果是,如果shell脚本是由cronjob执行的,我如何识别/检查?
我想在我的脚本中实现一个功能,它返回一些其他消息,就像它是由用户执行一样。像这样举例如:
if [[ "$type" == "cron" ]]; then
echo "This was executed by a cronjob. It's an automated task.";
else
USERNAME="$(whoami)"
echo "This was executed by a user. Hi ${USERNAME}, how are you?";
fi
答案 0 :(得分:7)
一个选项是测试脚本是否附加到tty。
#!/bin/sh
if [ -t 0 ]; then
echo "I'm on a TTY, this is interactive."
else
logger "My output may get emailed, or may not. Let's log things instead."
fi
请注意at(1)
触发的作业也是在没有tty的情况下运行的,但cron没有具体说明。
另请注意,这是POSIX,而不是Linux-(或bash-)特定的。