I am trying to run a shell script at a fixed time with the help of "at" command. But it doesn't seem to work.
For example, I created a shell script named as "task" having content:
vlc
and schedule it to run at 21:52 with the command:
$at -f task 21:52
it shows message:
warning: commands will be executed using /bin/sh
job 16 at Thu Apr 26 21:52:00 2012
but it doesn't work.
I tried giving the vlc command directly to at command, but it also doesn't work.
It seems like "at" command doesn't work for all the commands or scripts because it works for commands like "echo".
Please help me...!!