Last active
August 29, 2015 14:17
-
-
Save toshihirock/8f6b080fbc4ffa607bf1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
dir=/etc/crontab | |
echo -e "\n**************${dir}****************" | |
cat ${dir} | |
echo "***********************************" | |
for dir in `ls -d /var/spool/cron/*` | |
do | |
echo -e "\n**************${dir}****************" | |
cat ${dir} | |
echo "***********************************" | |
done | |
dirs=("/etc/cron.d/" "/etc/cron.hourly/" "/etc/cron.daily/" "/etc/cron.weekly/" "/etc/cron.monthly/") | |
for dir in ${dirs[@]} | |
do | |
echo -e "\n**************${dir}****************" | |
ls ${dir} | |
echo "***********************************" | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Cron
システム設定
ユーザーごと
サービスごと
anacron