The UNIX and Linux Forums  
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.

Go Back   The UNIX and Linux Forums > Top Forums > UNIX for Dummies Questions & Answers
.
google unix.com



UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !!

More UNIX and Linux Forum Topics You Might Find Helpful
Thread Thread Starter Forum Replies Last Post
crontab-nmon not working fara_aris AIX 5 06-03-2008 06:08 AM
crontab NOT working baanprog UNIX for Advanced & Expert Users 2 09-26-2006 01:11 PM
crontab command not working digant UNIX for Advanced & Expert Users 8 01-04-2004 09:46 PM
crontab not working right kymberm UNIX for Dummies Questions & Answers 3 07-09-2003 05:21 PM
cron/crontab not working ezekiel61 UNIX for Dummies Questions & Answers 2 02-05-2003 07:59 AM

Closed Thread
English Japanese Spanish French German Portuguese Italian Dutch Swedish Russian Norwegian Hungarian Hebrew Danish Bulgarian Greek Powered by Powered by Google
 
LinkBack Thread Tools Search this Thread Rate Thread Display Modes
  #1 (permalink)  
Old 05-03-2005
doddas doddas is offline
Registered User
  
 

Join Date: May 2005
Posts: 1
Unhappy differnce between working of at and crontab commands

h I would like to know the differnce (both working and how) between at command and crontab..

Thanks in advance
Satish D
  #2 (permalink)  
Old 05-04-2005
Just Ice's Avatar
Just Ice Just Ice is offline Forum Advisor  
Lights on, brain off.
  
 

Join Date: Mar 2005
Location: in front of my computer
Posts: 637
at is usually for non-regular, one-time-only jobs while cron is usually for regular, perpetual jobs ...

at samples:
Code:
# harass the console user at 7:05 pm
at 1905
echo "This is my console!" > /dev/console
# reboot the box 1 hour from now
at now + 1 hour
sync; sync; reboot
cron samples:
Code:
# reboot host every weekday @ 8:30 pm
30 20 * * 0-5 (sync; sync; init 6) > /dev/null 2>&1
# annoy the console user every weekday @ 8:00 am
00 08 * * 0-5 echo "This is my concole!" > /dev/console
however, you can also get a job to go regularly with an at command by adding something like this in your script ...
Code:
at now + 1 week << GO
/path/to/this/script > /dev/null 2>&1
GO
... and a "one-time" job in cron ... (will only run when all time conditions are met) ...
Code:
# run the job at 1:01 am Monday, January 1
01 01 01 01 1 echo "This is my console!" > /dev/console
btw, it would be best if you get into checking the man pages while you're just starting ... see "man at" and "man crontab" ...
  #3 (permalink)  
Old 05-04-2005
solaris-ninja solaris-ninja is offline
Registered User
  
 

Join Date: May 2005
Posts: 12
Quote:
Originally Posted by Just Ice
at is usually for non-regular, one-time-only jobs while cron is usually for regular, perpetual jobs ...

at samples:
Code:
# harass the console user at 7:05 pm
at 1905
echo "This is my console!" > /dev/console
# reboot the box 1 hour from now
at now + 1 hour
sync; sync; reboot
cron samples:
Code:
# reboot host every weekday @ 8:30 pm
30 20 * * 0-5 (sync; sync; init 6) > /dev/null 2>&1
# annoy the console user every weekday @ 8:00 am
00 08 * * 0-5 echo "This is my concole!" > /dev/console
however, you can also get a job to go regularly with an at command by adding something like this in your script ...
Code:
at now + 1 week << GO
/path/to/this/script > /dev/null 2>&1
GO
... and a "one-time" job in cron ... (will only run when all time conditions are met) ...
Code:
# run the job at 1:01 am Monday, January 1
01 01 01 01 1 echo "This is my console!" > /dev/console
btw, it would be best if you get into checking the man pages while you're just starting ... see "man at" and "man crontab" ...

Very interesting answer. Good Job.
Closed Thread

Bookmarks

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On




All times are GMT -4. The time now is 08:22 AM.


Powered by: vBulletin, Copyright ©2000 - 2006, Jelsoft Enterprises Limited. Language Translations Powered by .
vBCredits v1.4 Copyright ©2007 - 2008, PixelFX Studios
The UNIX and Linux Forums Content Copyright ©1993-2009. All Rights Reserved.Ad Management by RedTyger

Content Relevant URLs by vBSEO 3.2.0