using at


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting using at
# 1  
Old 05-18-2009
using at

any reason why this doesn seem to work



if the time now is 1430 commands im using

Code:
at 1431
at> echo "time is 1431"

then it prints out
commands will be executed using /usr/local/bin.bash
job 1242653400.a at Mon May 18 14:31:00 2009

but it never actually echoes the date

any ideas

Thanks

Calypso
# 2  
Old 05-18-2009
That's because at, like cron, run commands in the background, with no TTY connected to std{in,out,err}. All output gets collected and is mailed to the user who queued the command(s)
# 3  
Old 05-18-2009
Yeh I just checked my mail, your right all my at requests are there

Thanks pludi
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question