- Back to Home »
- Edit Crontab AIX - Chỉnh sửa crontab
Posted by : Unknown
Thứ Năm, 22 tháng 5, 2014
Format of entries:
minute hour date-of-month month day-of-week command
One way to edit a crontab file:
# crontab -e
A safer method:
# crontab -l > /tmp/crontmp
# vi /tmp/crontmp
# crontab /tmp/crontmp
Remove your current crontab file
# crontab -r