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

有没有一个命令或现有的脚本可以让我一次查看所有* NIX系统的预定cron作业? 我希望它包含所有用户crontabs,以及/etc/crontab ,以及/etc/cron.d 。 看到/etc/crontab run-parts运行的特定命令也是很好的。

理想情况下,我希望将输出呈现为一个很好的列形式,并以一些有意义的方式进行排序。

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

我正要自己写这样的剧本,但如果有人已经去了麻烦......


你将不得不以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

我最终编写了一个脚本(我试图自我介绍bash脚本的更精细的点,所以这就是为什么你在这里看不到像Perl这样的东西)。 这不完全是一件简单的事情,但它完成了我所需要的大部分工作。 它使用Kyle的建议来查找个人用户的crontabs,同时还处理/etc/crontab (包括由/etc/cron.hourlyrun-parts启动的脚本, /etc/crontab /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+) +(.*)$/1t2t3t4t5t6t7/" |
    sort --numeric-sort --field-separator="${tab}" --key=2,1 |
    sed "1imithtdtmtwtusertcommand" |
    column -s"${tab}" -t

rm --force "${temp}"

在Ubuntu或Debian下,您可以通过/var/spool/cron/crontabs/查看crontab,然后为每个用户提供一个文件。 这当然只适用于用户特定的crontab。

链接地址: http://www.djcxy.com/p/66335.html

上一篇: How do I list all cron jobs for all users?

下一篇: Java constructors assingning value to variable and then interchanging them