[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: at
Charles Menzes said:
> In order to run an app via at <x> number of minutes after the at is ran,
> would the syntax be:
>
> at now + <x> minutes <command>
No, it's
echo $command | at now + $x minutes
or
at now + $x minutes <<END
command
command
END
or something like that. (In other words, the command is given on
stdin.)
Steve
--
steve@silug.org | Linux Users of Central Illinois
(618)398-7320 | Meetings the 4th Tuesday of every month
Steven Pritchard | http://www.luci.org/ for more info
--
To unsubscribe, send email to majordomo@luci.org with
"unsubscribe luci-discuss" in the body.
- References:
- at
- From: Charles Menzes <charles@lunarmedia.net>