Re: 'Show' output

2001-05-04 Thread Thalis A. Kalfigopoulos
On your mysql monitor do: mysql> tee filename.out This will redirect everhting to filename.out besides ptinting it to the screen. Alternatively from you shell: $ echo "show status;"|mysql -u thalis -p lala > filename.out regards, thalis On Fri, 4 May 2001, Tim wrote: > > Is there any way t

Re: 'Show' output

2001-05-04 Thread Jeremy Zawodny
On Fri, May 04, 2001 at 01:48:59PM -0400, Tim wrote: > > Is there any way to redirect the output of a 'Show' command to a > text file?? I know you can do this with a SELECT sql statement... tee somefile show tables; notee -- Jeremy D. Zawodny, <[EMAIL PROTECTED]> Technical Yahoo - Yahoo Financ

Re: 'Show' output

2001-05-04 Thread Mike Wexler
echo 'show blah blah blah' | mysql -u user -ppassword > /directory/filename Tim wrote: > > Is there any way to redirect the output of a 'Show' command to a text > file?? I know you can do this with a SELECT sql statement... > > -TIM > > ---

'Show' output

2001-05-04 Thread Tim
Is there any way to redirect the output of a 'Show' command to a text file?? I know you can do this with a SELECT sql statement... -TIM - Before posting, please check: http://www.mysql.com/manual.php (the manual) http