当前位置:  开发笔记 > 编程语言 > 正文

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

如何解决《如何列出所有用户的所有cron作业?》经验,为你挑选了13个好方法。

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

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

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

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



1> Kyle Burton..:

你必须以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


在NIS或LDAP中定义用户时不起作用.你需要在$中使用`for user(getent passwd | cut -f1 -d :); 做echo $ user; crontab -u $ user -l; done`
查看/ var/spool/cron中的文件会不会更容易?
更新了这个以排除注释并禁止'no crontab for user ...'消息:`for user in $(cut -f1 -d:/ etc/passwd); do crontab -u $ user -l 2>/dev/null | grep -v'^#'; done`
在/ etc/cron.hourly /`,`/ etc/cron.daily /`,`/ etc/cron.weekly /`,`/ etc/cron.monthly /`......中的cronjobs怎么样?

2> yukondude..:

我最终编写了一个脚本(我正在尝试自己教授bash脚本的细节,所以这就是为什么你在这里看不到类似Perl的东西).这不是一件简单的事情,但它完成了我所需要的大部分工作.它采用了凯尔的建议用于查找个人用户的crontab,而且还与涉及/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  # */ 
                    [[ -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}"  # */ 

# 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}"


没什么,但它没有对/ etc/crontab和/etc/cron.d/中的系统cron作业做任何事情.处理这些,并在最后格式化所有内容,是我的脚本所做的.
yukondude - 你应该考虑将它放在github上,即使只是作为一个要点.
警告:此脚本缺少来自`/ etc/anacrontab`的事件
尝试复制粘贴并运行它,但它失败了:showcrons.sh:第59行:意外标记附近的语法错误`<'showcrons.sh:第59行:`done <<(cut --fields = 1 --delimiter =:/etc/passwd中)"
@KyleBurton似乎至少有8个要点已经复制了这个,https://gist.github.com/gists/search?q =%22file+and+cron+job+directory%22

3> 小智..:

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

对于Redhat 6/7和Centos,crontab是在/var/spool/cron/.


这也适用于RedHat(/ var/spool/cron),并且比编写/运行脚本更容易,特别是如果你使用像Ldap这样的东西来管理帐户.+1
这对我来说比任何其他答案都更有帮助.此方法允许您查看不再存在的用户的crontabs,根据OP的请求为您提供所有cron作业.
也适用于Solaris.

4> 小智..:

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

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



5> Jørgen..:

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

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

作为根.非常简单,非常短.

给我输出像:

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

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


使用`tail -n +1/var/spool/cron/*`列出文件的所有内容.
...或者`sudo sh -c'tail -n +1/var/spool/cron/*'`如果你不想成为root用户.我的OCD强迫我调查为什么我不能写这个命令.这是因为普通用户无权访问/ var/spool/cron目录,并且glob被解释为文字明星字符,显然不存在.

6> 小智..:

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

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



7> Mithaldu..:
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.

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



8> 小智..:

如果使用NIS检查集群,则根据Matt的答案/ var/spool/cron/tabs查看用户是否具有crontab条目的唯一方法.

grep -v "#" -R  /var/spool/cron/tabs



9> Sam T..:

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

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


真棒!我添加了一些变化来查看cron作业所在的用户,并在结果之间放置一些空格:`cat/etc/passwd | sed's /^ \([^:]*.):.*$/echo"\ncrontab for\1:"; sudo crontab -u\1 -l 2> \&1 /'| grep -v"没有crontab for"| sh`节省了一点时间

10> squarism..:

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

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

但是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).



11> Sheikh Abdul..:

从ROOT用户获取列表。

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



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



13> Dale Anderso..:

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

注意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)上使用它.

推荐阅读
我我檬檬我我186
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有