프린트 하기

OS환경 : Oracle Linux 6.8 (64bit)


방법 : 모든 계정 crontab 작업 보기

모든 계정 crontab 작업 보기



쉘 사용 계정 확인

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



모든 계정 확인

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


참조

https://zetawiki.com/wiki/%EB%AA%A8%EB%93%A0_%EA%B3%84%EC%A0%95_crontab_%EC%9E%91%EC%97%85_%EB%B3%B4%EA%B8%B0