如何列出所有用户的所有cron作业?

时间:2008-09-25 18:01:31

标签: unix cron

是否有命令或现有脚本可以让我一次查看所有* NIX系统的预定cron作业?我希望它包括所有用户crontabs,以及/etc/crontab,以及/etc/cron.d中的任何内容。通过run-parts中的/etc/crontab运行特定命令也很高兴。

理想情况下,我希望输出采用漂亮的列形式并以一些有意义的方式排序。

然后,我可以合并来自多个服务器的这些列表,以查看整个“事件安排”。

我本来就要写这样一个剧本,但如果有人已经麻烦了......

24 个答案:

答案 0 :(得分:1064)

您必须以root身份运行它,但是:

for user in $(cut -f1 -d: /etc/passwd); do crontab -u $user -l; done

将遍历列出其crontab的每个用户名。 crontabs由各自的用户拥有,因此您将无法看到另一个用户的crontab而不是他们或root用户。


修改 如果您想知道crontab属于哪个用户,请使用echo $user

for user in $(cut -f1 -d: /etc/passwd); do echo $user; crontab -u $user -l; done

答案 1 :(得分:300)

我最终编写了一个脚本(我正在尝试自己教授bash脚本的更好点,所以这就是为什么你在这里看不到类似Perl的东西)。这不是一件简单的事情,但它完成了我所需要的大部分工作。它使用Kyle的建议来查找单个用户的crontabs,还处理/etc/crontab(包括run-parts /etc/cron.hourly/etc/cron.daily启动的脚本等)和/etc/cron.d目录中的作业。它需要所有这些并将它们合并到一个类似于以下内容的显示中:

mi     h    d  m  w  user      command
09,39  *    *  *  *  root      [ -d /var/lib/php5 ] && find /var/lib/php5/ -type f -cmin +$(/usr/lib/php5/maxlifetime) -print0 | xargs -r -0 rm
47     */8  *  *  *  root      rsync -axE --delete --ignore-errors / /mirror/ >/dev/null
17     1    *  *  *  root      /etc/cron.daily/apt
17     1    *  *  *  root      /etc/cron.daily/aptitude
17     1    *  *  *  root      /etc/cron.daily/find
17     1    *  *  *  root      /etc/cron.daily/logrotate
17     1    *  *  *  root      /etc/cron.daily/man-db
17     1    *  *  *  root      /etc/cron.daily/ntp
17     1    *  *  *  root      /etc/cron.daily/standard
17     1    *  *  *  root      /etc/cron.daily/sysklogd
27     2    *  *  7  root      /etc/cron.weekly/man-db
27     2    *  *  7  root      /etc/cron.weekly/sysklogd
13     3    *  *  *  archiver  /usr/local/bin/offsite-backup 2>&1
32     3    1  *  *  root      /etc/cron.monthly/standard
36     4    *  *  *  yukon     /home/yukon/bin/do-daily-stuff
5      5    *  *  *  archiver  /usr/local/bin/update-logs >/dev/null

请注意,它会按小时和分钟显示用户和或多或少的排序,以便我可以查看每日计划。

到目前为止,我已经在Ubuntu,Debian和Red Hat AS上测试了它。

#!/bin/bash

# System-wide crontab file and cron job directory. Change these for your system.
CRONTAB='/etc/crontab'
CRONDIR='/etc/cron.d'

# Single tab character. Annoyingly necessary.
tab=$(echo -en "\t")

# Given a stream of crontab lines, exclude non-cron job lines, replace
# whitespace characters with a single space, and remove any spaces from the
# beginning of each line.
function clean_cron_lines() {
    while read line ; do
        echo "${line}" |
            egrep --invert-match '^($|\s*#|\s*[[:alnum:]_]+=)' |
            sed --regexp-extended "s/\s+/ /g" |
            sed --regexp-extended "s/^ //"
    done;
}

# Given a stream of cleaned crontab lines, echo any that don't include the
# run-parts command, and for those that do, show each job file in the run-parts
# directory as if it were scheduled explicitly.
function lookup_run_parts() {
    while read line ; do
        match=$(echo "${line}" | egrep -o 'run-parts (-{1,2}\S+ )*\S+')

        if [[ -z "${match}" ]] ; then
            echo "${line}"
        else
            cron_fields=$(echo "${line}" | cut -f1-6 -d' ')
            cron_job_dir=$(echo  "${match}" | awk '{print $NF}')

            if [[ -d "${cron_job_dir}" ]] ; then
                for cron_job_file in "${cron_job_dir}"/* ; do  # */ <not a comment>
                    [[ -f "${cron_job_file}" ]] && echo "${cron_fields} ${cron_job_file}"
                done
            fi
        fi
    done;
}

# Temporary file for crontab lines.
temp=$(mktemp) || exit 1

# Add all of the jobs from the system-wide crontab file.
cat "${CRONTAB}" | clean_cron_lines | lookup_run_parts >"${temp}" 

# Add all of the jobs from the system-wide cron directory.
cat "${CRONDIR}"/* | clean_cron_lines >>"${temp}"  # */ <not a comment>

# Add each user's crontab (if it exists). Insert the user's name between the
# five time fields and the command.
while read user ; do
    crontab -l -u "${user}" 2>/dev/null |
        clean_cron_lines |
        sed --regexp-extended "s/^((\S+ +){5})(.+)$/\1${user} \3/" >>"${temp}"
done < <(cut --fields=1 --delimiter=: /etc/passwd)

# Output the collected crontab lines. Replace the single spaces between the
# fields with tab characters, sort the lines by hour and minute, insert the
# header line, and format the results as a table.
cat "${temp}" |
    sed --regexp-extended "s/^(\S+) +(\S+) +(\S+) +(\S+) +(\S+) +(\S+) +(.*)$/\1\t\2\t\3\t\4\t\5\t\6\t\7/" |
    sort --numeric-sort --field-separator="${tab}" --key=2,1 |
    sed "1i\mi\th\td\tm\tw\tuser\tcommand" |
    column -s"${tab}" -t

rm --force "${temp}"

答案 2 :(得分:171)

在Ubuntu或debian下,您可以按/var/spool/cron/crontabs/查看crontab,然后每个用户的文件都在那里。那当然只适用于特定于用户的crontab。

对于Redhat 6/7和Centos,crontab位于/var/spool/cron/

答案 3 :(得分:31)

这将显示所有用户的所有crontab条目。

sed 's/^\([^:]*\):.*$/crontab -u \1 -l 2>\&1/' /etc/passwd | grep -v "no crontab for" | sh

答案 4 :(得分:28)

取决于您的Linux版本,但我使用:

tail -n 1000 /var/spool/cron/*

以root身份。非常简单而且很短。

给我的输出如下:

==> /var/spool/cron/root <==
15 2 * * * /bla

==> /var/spool/cron/my_user <==
*/10 1 * * * /path/to/script

答案 5 :(得分:14)

Kyle Burton对改进输出格式的一个小改进:

#!/bin/bash
for user in $(cut -f1 -d: /etc/passwd)
do echo $user && crontab -u $user -l
echo " "
done

答案 6 :(得分:13)

getent passwd | cut -d: -f1 | perl -e'while(<>){chomp;$l = `crontab -u $_ -l 2>/dev/null`;print "$_\n$l\n" if $l}'

这可以避免直接搞乱passwd,跳过没有cron条目的用户,对于那些拥有cron条目的用户,它会打印出用户名和crontab。

大部分都放在这里虽然如此我以后可以找到它以防万一我需要再次搜索它。

答案 7 :(得分:10)

答案 8 :(得分:9)

这个脚本在CentOS中为我工作,列出了环境中的所有crons:

sudo cat /etc/passwd | sed 's/^\([^:]*\):.*$/sudo crontab -u \1 -l 2>\&1/' | grep -v "no crontab for" | sh

答案 9 :(得分:8)

我喜欢上面简单的单行答案:

  

用于$中的用户(cut -f1 -d:/ etc / passwd); do crontab -u $ user -l;完成

但Solaris没有-u标志并且不打印它正在检查的用户,你可以像这样修改它:

for user in $(cut -f1 -d: /etc/passwd); do echo User:$user; crontab -l $user 2>&1 | grep -v crontab; done

当不允许帐户使用cron等时,您将获得没有crontab抛出的错误的用户列表。请注意,在Solaris中,角色也可以在/ etc / passwd中(请参阅/ etc / user_attr)。

答案 10 :(得分:7)

for user in $(cut -f1 -d: /etc/passwd); 
do 
    echo $user; crontab -u $user -l; 
done

答案 11 :(得分:6)

从ROOT用户获取列表。

var test = $(".data[data-select='true']").find('.price').val();

答案 12 :(得分:5)

以下删除了没有crontab的用户的注释,空行和错误。你剩下的就是一份明确的用户及其工作清单。

请注意在第2行使用sudo。如果您已经是root用户,请将其删除。

for USER in $(cut -f1 -d: /etc/passwd); do \
USERTAB="$(sudo crontab -u "$USER" -l 2>&1)";  \
FILTERED="$(echo "$USERTAB"| grep -vE '^#|^$|no crontab for|cannot use this program')";  \
if ! test -z "$FILTERED"; then  \
echo "# ------ $(tput bold)$USER$(tput sgr0) ------";  \
echo "$FILTERED";  \
echo "";  \
fi;  \
done

示例输出:

# ------ root ------
0 */6 * * * /usr/local/bin/disk-space-notify.sh
45 3 * * * /opt/mysql-backups/mysql-backups.sh
5 7 * * * /usr/local/bin/certbot-auto renew --quiet --no-self-upgrade

# ------ sammy ------
55 * * * * wget -O - -q -t 1 https://www.example.com/cron.php > /dev/null

我在Ubuntu(12到16)和Red Hat(5到7)上使用它。

答案 13 :(得分:4)

取决于您的cron版本。在FreeBSD上使用Vixie cron,我可以这样做:

(cd /var/cron/tabs && grep -vH ^# *) 

如果我想要更多标签消除,我可能会这样做:

(cd /var/cron/tabs && grep -vH ^# * | sed "s/:/      /")

这是sed替换部分中的文字标签。

/etc/passwd中循环浏览用户并为每个用户执行crontab -l -u $user可能更具系统独立性。

答案 14 :(得分:3)

感谢这个非常有用的脚本。我在旧系统上运行它有一些小问题(Red Hat Enterprise 3,它处理不同的egrep和字符串中的选项卡),以及/etc/cron.d/中没有任何内容的其他系统(脚本随后以错误结束)。所以这是一个补丁,使它在这种情况下工作:

2a3,4
> #See:  http://stackoverflow.com/questions/134906/how-do-i-list-all-cron-jobs-for-all-users
>
27c29,30
<         match=$(echo "${line}" | egrep -o 'run-parts (-{1,2}\S+ )*\S+')
---
>         #match=$(echo "${line}" | egrep -o 'run-parts (-{1,2}\S+ )*\S+')
>         match=$(echo "${line}" | egrep -o 'run-parts.*')
51c54,57
< cat "${CRONDIR}"/* | clean_cron_lines >>"${temp}"  # */ <not a comment>
---
> sys_cron_num=$(ls /etc/cron.d | wc -l | awk '{print $1}')
> if [ "$sys_cron_num" != 0 ]; then
>       cat "${CRONDIR}"/* | clean_cron_lines >>"${temp}"  # */ <not a comment>
> fi
67c73
<     sed "1i\mi\th\td\tm\tw\tuser\tcommand" |
---
>     sed "1i\mi${tab}h${tab}d${tab}m${tab}w${tab}user${tab}command" |

我不确定第一个egrep的变化是个好主意,但是,这个脚本已经在RHEL3,4,5和Debian5上进行了测试,没有任何问题。希望这有帮助!

答案 15 :(得分:2)

建立在@Kyle之上

for user in $(tail -n +11 /etc/passwd | cut -f1 -d:); do echo $user; crontab -u $user -l; done

通常在/ etc / passwd,

的顶部避免注释

在macosx上

for user in $(dscl . -list /users | cut -f1 -d:); do echo $user; crontab -u $user -l; done    

答案 16 :(得分:2)

对此表示歉意,并感谢yukondude。

尽管这不是一项完美的工作,但我试图总结一下计时设置以便于阅读,并且我不会碰“每个星期五”或“仅在星期一”。

这是版本10-现在:

  • 运行速度快得多
  • 具有可选的进度字符,因此您可以进一步提高速度。
  • 使用分隔线分隔标题和输出。
  • 当所有遇到的时间间隔都可以汇总时,
  • 以紧凑格式输出。
  • 接受一年中月份的Jan ... Dec描述符
  • 一周中的某几天接受Mon ... Sun描述符
  • 尝试在缺少anacron时对其进行debian风格的虚拟化
  • 尝试处理crontab行,这些行使用“ [-x ...]”对可执行性进行预测试后运行文件
  • 尝试处理crontab行,这些行使用“ -v”命令在预测试可执行性之后运行文件
  • 允许使用间隔范围和列表。
  • 支持在用户特定的/ var / spool crontab文件中使用运行部件。

我现在在这里完整发布脚本。

https://gist.github.com/myshkin-uk/d667116d3e2d689f23f18f6cd3c71107

答案 17 :(得分:2)

您可以为所有用户列表撰写:

.bash_profile is called
-bash: 7: Bad file descriptor
>pwd
/home/joco
-bash: 7: Bad file descriptor
>pwd
/home/joco
-bash: 7: Bad file descriptor
>cd
-bash: 7: Bad file descriptor
>

你也可以去

sudo crontab -u userName -l

,

此文件将列出日程表

cd /etc/cron.daily/
ls -l
cat filename

答案 18 :(得分:2)

我认为更好的一个班轮将在下面。例如,如果您有NIS或LDAP中的用户,则他们不会在/ etc / passwd中。这将为您提供已登录的每个用户的crontabs。

for I in `lastlog | grep -v Never | cut -f1 -d' '`; do echo $I ; crontab -l -u $I ; done

答案 19 :(得分:1)

由于循环浏览文件(/etc/passwd)并执行操作,我在How can I read a file (data stream, variable) line-by-line (and/or field-by-field)?错过了正确的方法:

while IFS=":" read -r user _
do
   echo "crontab for user ${user}:"
   crontab -u "$user" -l
done < /etc/passwd

使用/etc/passwd作为字段分隔符逐行读取:。通过说read -r user _,我们让$user保留第一个字段,_保留其余字段(它只是一个忽略字段的垃圾变量)。

这样,我们就可以使用变量crontab -u来调用$user,我们引用它是为了安全性(如果它包含空格怎么办?在这样的文件中不太可能,但你永远不知道)。

答案 20 :(得分:1)

在Solaris上,对于特定的已知用户名:

crontab -l username

所有其他* Nix将需要-u修饰符:

crontab -u username -l

要在Solaris上同时获取所有用户的作业,就像上面的其他帖子一样:

for user in $(cut -f1 -d: /etc/passwd); do crontab -l $user 2>/dev/null; done

答案 21 :(得分:0)

尽管许多答案都能产生有用的结果,但我认为为该任务维护复杂脚本的努力是不值得的。这主要是因为大多数发行版使用不同的cron守护程序。

孩子和长者,观看和学习。

$ \cat ~jaroslav/bin/ls-crons 
#!/bin/bash
getent passwd | awk -F: '{ print $1 }' | xargs -I% sh -c 'crontab -l -u % | sed "/^$/d; /^#/d; s/^/% /"' 2>/dev/null
echo
cat /etc/crontab /etc/anacrontab 2>/dev/null | sed '/^$/d; /^#/d;'
echo
run-parts --list /etc/cron.hourly;
run-parts --list /etc/cron.daily;
run-parts --list /etc/cron.weekly;
run-parts --list /etc/cron.monthly;

像这样运行

$ sudo ls-cron

样本输出(Gentoo)

$ sudo ~jaroslav/bin/ls-crons 
jaroslav */5 * * * *  mv ~/java_error_in_PHPSTORM* ~/tmp 2>/dev/null
jaroslav 5 */24 * * * ~/bin/Find-home-files
jaroslav * 7 * * * cp /T/fortrabbit/ssh-config/fapps.tsv /home/jaroslav/reference/fortrabbit/fapps
jaroslav */8 1 * * * make -C /T/fortrabbit/ssh-config discover-apps # >/dev/null
jaroslav */7    * * * * getmail -r jazzoslav -r fortrabbit 2>/dev/null
jaroslav */1    * * * * /home/jaroslav/bin/checkmail
jaroslav *    9-18 * * * getmail -r fortrabbit 2>/dev/null

SHELL=/bin/bash
PATH=/sbin:/bin:/usr/sbin:/usr/bin
MAILTO=root
HOME=/
SHELL=/bin/sh
PATH=/sbin:/bin:/usr/sbin:/usr/bin
MAILTO=root
RANDOM_DELAY=45
START_HOURS_RANGE=3-22
1   5   cron.daily      nice run-parts /etc/cron.daily
7   25  cron.weekly     nice run-parts /etc/cron.weekly
@monthly 45 cron.monthly        nice run-parts /etc/cron.monthly

/etc/cron.hourly/0anacron
/etc/cron.daily/logrotate
/etc/cron.daily/man-db
/etc/cron.daily/mlocate
/etc/cron.weekly/mdadm
/etc/cron.weekly/pfl

样本输出(Ubuntu)

SHELL=/bin/sh
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
17 *    * * *   root    cd / && run-parts --report /etc/cron.hourly
25 6    * * *   root    test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.daily )
47 6    * * 7   root    test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.weekly )
52 6    1 * *   root    test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.monthly )

/etc/cron.hourly/btrfs-quota-cleanup
/etc/cron.hourly/ntpdate-debian
/etc/cron.daily/apport
/etc/cron.daily/apt-compat
/etc/cron.daily/apt-show-versions
/etc/cron.daily/aptitude
/etc/cron.daily/bsdmainutils
/etc/cron.daily/dpkg
/etc/cron.daily/logrotate
/etc/cron.daily/man-db
/etc/cron.daily/mlocate
/etc/cron.daily/passwd
/etc/cron.daily/popularity-contest
/etc/cron.daily/ubuntu-advantage-tools
/etc/cron.daily/update-notifier-common
/etc/cron.daily/upstart
/etc/cron.weekly/apt-xapian-index
/etc/cron.weekly/man-db
/etc/cron.weekly/update-notifier-common

图片

Ubuntu:

ubuntu

Gentoo:

gentoo

答案 22 :(得分:-1)

对我来说,看看/ var / spool / cron / crontabs是最好的方式

答案 23 :(得分:-2)

此脚本将Crontab输出到文件,并列出所有确认没有crontab条目的用户:

for user in $(cut -f1 -d: /etc/passwd); do 
  echo $user >> crontab.bak
  echo "" >> crontab.bak
  crontab -u $user -l >> crontab.bak 2>> > crontab.bak
done