In the last episode (Jul 29), Peter L. Berghold said:
> On Tue, 2003-07-29 at 15:19, azamka wrote:
> > 
> > [EMAIL PROTECTED] usr]# mysql security < select *  from machine;
> > -bash: select: No such file or directory
> > 
> 
> 
> EEK! What you told the shell to do was open a file called "select" and
> redirect it to mysql. 
> 
> What you meant to do was "echo 'select * from machine' | mysql security"

or better yet, 

mysql -e "select * from machine" security

-- 
        Dan Nelson
        [EMAIL PROTECTED]

-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:    http://lists.mysql.com/[EMAIL PROTECTED]

Reply via email to