Re: cron and standard io

2004-02-10 Thread Colin Watson
On Mon, Feb 09, 2004 at 03:20:47PM -0500, Harland Christofferson wrote: [...] Message-ID:

Re: cron and standard io

2004-02-10 Thread Colin Watson
On Mon, Feb 09, 2004 at 03:20:47PM -0500, Harland Christofferson wrote: > i have a bash script called from a cron job. i want to change the > terminal size so, within the script, i tried: > > stty cols 160 rows 60 > > the result of the script indicated that there is a standard io error > when t

Re: cron and standard io

2004-02-10 Thread Brian Brazil
On Mon, Feb 09, 2004 at 03:20:47PM -0500, Harland Christofferson wrote: > i have a bash script called from a cron job. i want to change the > terminal size so, within the script, i tried: > > stty cols 160 rows 60 > > the result of the script indicated that there is a standard io error > when t

cron and standard io

2004-02-09 Thread Harland Christofferson
i have a bash script called from a cron job. i want to change the terminal size so, within the script, i tried: stty cols 160 rows 60 the result of the script indicated that there is a standard io error when this line is run from the cron job. it works fine when run from an xterm shell however