shell – 如何在我的crontab中使用我的别名?

前端之家收集整理的这篇文章主要介绍了shell – 如何在我的crontab中使用我的别名?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在.profile中有一些命令,我​​想从我的crontab中调用它.

例如,如果我有,

alias notify-me="~/bin/notify.pl -u user1"
alias notify-team="~/bin/notify.pl -u user1 user2 user3 user4 ...."

我想只是调用别名

0 11 * * * notify-team

所以如果我的.profile中的列表更新,我也不必更新crontab.但是,我似乎无法在我的crontab中使用别名.有工作吗?

我尝试了建议here的建议(例如/ bin / bash -lc和脚本包装脚本).它似乎适用于脚本但不适用于别名.

有任何想法吗?

从有关别名的联机帮助页:
Note aliases are not expanded by default in  non-interactive  shell,and  it  can  be  enabled  by  setting  the 'expand_aliases'
shell option using shopt.

因此,在您的采购脚本开始时尝试使用shopt -s expand_aliases.这应该让你使用华纳的建议.

原文链接:https://www.f2er.com/bash/385913.html

猜你在找的Bash相关文章