|
Prev: Running a command for a limited time
Next: bash / posix shells : chaining commands with || and &&
From: invincible on 23 Jun 2008 05:47 I would like to edit crontab entries on about 50 Systems thorugh script and change the execution time of one particular script . Any ideas on this.
From: pk on 23 Jun 2008 06:28 On Monday 23 June 2008 11:47, invincible wrote: > > > I would like to edit crontab entries on about 50 Systems thorugh > script and change the execution time of one particular script . If you have ssh on all these systems, there are tools like tentakel (and probably others) that let you perform the same operation in parallel on many systems. -- All the commands are tested with bash and GNU tools, so they may use nonstandard features. I try to mention when something is nonstandard (if I'm aware of that), but I may miss something. Corrections are welcome.
From: invincible on 23 Jun 2008 09:19 On Jun 23, 11:28 am, pk <p...(a)pk.invalid> wrote: > On Monday 23 June 2008 11:47, invincible wrote: > > > > > I would like to edit crontab entries on about 50 Systems thorugh > > script and change the execution time of one particular script . > > If you have ssh on all these systems, there are tools like tentakel (and > probably others) that let you perform the same operation in parallel on > many systems. > > -- > All the commands are tested with bash and GNU tools, so they may use > nonstandard features. I try to mention when something is nonstandard (if > I'm aware of that), but I may miss something. Corrections are welcome. I normally connect through rsh. rsh would be my preferred tool.
From: pk on 23 Jun 2008 09:24 On Monday 23 June 2008 15:19, invincible wrote: > I normally connect through rsh. rsh would be my preferred tool. "Easy extensibility to allow for different remote methods (currently only ssh and rsh are supported)". http://tentakel.biskalar.de/ (I purposely avoid commenting about rsh vs. ssh) -- All the commands are tested with bash and GNU tools, so they may use nonstandard features. I try to mention when something is nonstandard (if I'm aware of that), but I may miss something. Corrections are welcome.
|
Pages: 1 Prev: Running a command for a limited time Next: bash / posix shells : chaining commands with || and && |