I found this command on my crontab, i know what is "30 3 * * * /usr/bin/php5 /home/super/public_html/index.php" but what is "Cron Delete" ?
"30 3 * * * /usr/bin/php5 /home/super/public_html/index.php Cron delete"
# Edit this file to introduce tasks to be run by cron. # # Each task to run has to be defined through a single line # indicating with different fields when the task will be run # and what command to run for the task # # To define the time you can provide concrete values for # minute (m), hour (h), day of month (dom), month (mon), # and day of week (dow) or use '*' in these fields (for 'any').# # Notice that tasks will be started based on the cron's system # daemon's notion of time and timezones. # # Output of the crontab jobs (including errors) is sent through # email to the user the crontab file belongs to (unless redirected). # # For example, you can run a backup of all your user accounts # at 5 a.m every week with: # 0 5 * * 1 tar -zcf /var/backups/home.tgz /home/ # # For more information see the manual pages of crontab(5) and cron(8) # # m h dom mon dow command */10 * * * * /usr/bin/arecord -t wav -f cd -d 42 /home/randy/Music/lanting$(date "+\%^b\%d\%y").wav
/usr/bin/arecord -t wav -f cd -d 42 /home/randy/Music/lanting$(date "+\%^b\%d\%y").wav
*/10 * * * * /usr/bin/arecord -t wav -f cd -d 42 /home/randy/Music/lanting$(date "+\%^b\%d\%y").wav
find $FOLDER_PATH/$FOLDER -depth -regex ^$FOLDER_PATH/$FOLDER/[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+$ -type d -mtime +25 -exec ls -ld {} \; >> /tmp/deleted_folders.log
#!/bin/sh echo -n "Checking Raid... " RAID=`tw-cli /c0/u0 show status | cut -c17-31 | grep -ci OK` RAIDSTATUS=`tw-cli /c0/u0 show status | head -n1 | cut -c17-31` if [ $RAID -eq 0 ]; then VERIFYING=`tw-cli /c0/u0 show status | cut -c17-31 | grep -ci VERIFYING` REBUILDING=`tw-cli /c0/u0 show status | cut -c17-31 | grep -ci REBUILDING` if [ $VERIFYING -eq 1 ]; then CURRENTSTATUS=`tw-cli /c0/u0 show verifystatus | head -n1 | cut -c46-49` fi if [ $REBUILDING -eq 1 ]; then CURRENTSTATUS=`tw-cli /c0/u0 show rebuildstatus | head -n1 | cut -c47-50` fi echo "Raid is busy (Raid $RAIDSTATUS$CURRENTSTATUS)" exit 1 fi echo "Raid is idle (Raid $RAIDSTATUS)" echo -n "Checking for logged in Users... " USERS=`who | wc -l` if [ $USERS -gt 0 ]; then echo "Users online" exit 1 fi echo "None logged in"
root@monster:~# crontab -l # Edit this file to introduce tasks to be run by cron. # # Each task to run has to be defined through a single line # indicating with different fields when the task will be run # and what command to run for the task # # To define the time you can provide concrete values for # minute (m), hour (h), day of month (dom), month (mon), # and day of week (dow) or use '*' in these fields (for 'any').# # Notice that tasks will be started based on the cron's system # daemon's notion of time and timezones. # # Output of the crontab jobs (including errors) is sent through # email to the user the crontab file belongs to (unless redirected). # # For example, you can run a backup of all your user accounts # at 5 a.m every week with: # 0 5 * * 1 tar -zcf /var/backups/home.tgz /home/ # # For more information see the manual pages of crontab(5) and cron(8) # # m h dom mon dow command */10 * * * * /root/sd.sh | logger */30 * * * * /root/dropbox.sh > /dev/null
Mar 21 09:10:01 monster /USR/SBIN/CRON[3998]: (root) CMD (/root/sd.sh | logger) Mar 21 09:10:01 monster logger: Checking Raid... Raid is busy (Raid ) Mar 21 09:17:01 monster /USR/SBIN/CRON[4045]: (root) CMD ( cd / && run-parts --report /etc/cron.hourly) Mar 21 09:20:01 monster /USR/SBIN/CRON[4105]: (root) CMD (/root/sd.sh | logger) Mar 21 09:20:01 monster logger: Checking Raid... Raid is busy (Raid ) Mar 21 09:30:01 monster /USR/SBIN/CRON[4266]: (root) CMD (/root/sd.sh | logger) Mar 21 09:30:01 monster /USR/SBIN/CRON[4265]: (root) CMD (/root/dropbox.sh > /dev/null) Mar 21 09:30:01 monster logger: Checking Raid... Raid is busy (Raid )
root@monster:~# sh /root/sd.sh Checking Raid... Raid is idle (Raid OK) Checking for logged in Users... Users online root@monster:~#
rsync -aAXv --exclude={"/home/*","/dev/*","/proc/*","/sys/*","/tmp/*","/run/*","/mnt/*","/media/*","/lost+found"} /* /path/to/backup/folder
#!/bin/sh /bin/ps -ef |/bin/grep script2.sh |/bin/grep -v $$ > /dev/null 2>&1 if [ $? -ne 0 ] then /usr/bin/nohup /home/user1/script2.sh & fi