> Adrian Bridgett <[EMAIL PROTECTED]> writes:
> > cp fred.{txt,html} dest -> cp fred.txt fred.html dest
> > function f() {echo Hi;} -> f() {echo Hi;}
should be
f(){ echo Hi;}
you MUST have a space after the opening brace. Of course, extra
spaces are legal:
f ( ) { echo Hi ; }
--
Raul
--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to
[EMAIL PROTECTED] .
Trouble? e-mail to [EMAIL PROTECTED] .

