* NIX 시스템의 스케줄 된 크론 작업을 한 번에 모두 볼 수있는 명령 또는 기존 스크립트가 있습니까? 나는뿐만 아니라, 그것은 사용자의 크론 탭을 모두 포함하려면 /etc/crontab
, 그리고 무엇에 있어요 /etc/cron.d
. run-parts
에서 실행되는 특정 명령을 보는 것도 좋습니다 /etc/crontab
.
이상적으로는 멋진 열 형태로 출력을 원하고 의미있는 방식으로 정렬하고 싶습니다.
그런 다음 여러 서버에서이 목록을 병합하여 전체 “이벤트 일정”을 볼 수 있습니다.
나는 그런 스크립트를 직접 작성하려고했지만 누군가가 이미 문제에 빠진 경우 …
답변
이것을 루트로 실행해야하지만 다음을 수행하십시오.
for user in $(cut -f1 -d: /etc/passwd); do crontab -u $user -l; done
crontab을 나열하는 각 사용자 이름을 반복합니다. crontab은 해당 사용자가 소유하므로 다른 사용자의 crontab은 자신이나 루트가 아닌 것을 볼 수 없습니다.
편집
당신은 크론 탭은 사용에 속해있는 사용자 알고 싶다면echo $user
for user in $(cut -f1 -d: /etc/passwd); do echo $user; crontab -u $user -l; done
답변
나는 스크립트를 작성하게되었다. 그것은 간단한 일이 아니지만 내가 필요한 대부분의 일을합니다. 그것은 개별 사용자의 크론 탭을 찾기위한 카일의 제안을 사용하지만, 또한 취급 /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
매일 일정을 볼 수 있도록 사용자 및 시간과 분별로 정렬됩니다.
지금까지 우분투, 데비안 및 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}"
답변
우분투 또는 데비안에서는 crontab을 볼 수 있으며 /var/spool/cron/crontabs/
각 사용자에 대한 파일이 있습니다. 그것은 물론 사용자 별 crontab에만 해당됩니다.
Redhat 6/7 및 Centos의 경우 crontab은 아래에 /var/spool/cron/
있습니다.
답변
모든 사용자의 모든 crontab 항목이 표시됩니다.
sed 's/^\([^:]*\):.*$/crontab -u \1 -l 2>\&1/' /etc/passwd | grep -v "no crontab for" | sh
답변
리눅스 버전에 따라 다르지만 다음을 사용합니다.
tail -n 1000 /var/spool/cron/*
루트로. 매우 간단하고 짧습니다.
다음과 같은 출력을 제공합니다.
==> /var/spool/cron/root <==
15 2 * * * /bla
==> /var/spool/cron/my_user <==
*/10 1 * * * /path/to/script
답변
향상된 출력 형식으로 Kyle Burton의 답변을 약간 수정했습니다.
#!/bin/bash
for user in $(cut -f1 -d: /etc/passwd)
do echo $user && crontab -u $user -l
echo " "
done
답변
getent passwd | cut -d: -f1 | perl -e'while(<>){chomp;$l = `crontab -u $_ -l 2>/dev/null`;print "$_\n$l\n" if $l}'
이것은 passwd를 직접 엉망으로 만들지 않으며, cron 항목이없는 사용자는 건너 뛰고 crontab이있는 사용자의 경우 사용자 이름과 crontab을 인쇄합니다.
비록 이것을 다시 검색해야 할 경우를 대비하여 나중에 찾을 수 있도록 대부분 이것을 여기에 떨어 뜨립니다.