Quoting Kenneth Schneider <[EMAIL PROTECTED]>:
> Can someone explain the following "find" error. The "path" is specified
> by the "." in the command line.
>
> find . -name *copy_3* -exec rm {}\;
>
Try:
find . -name "*copy_3*" -exec rm \{} \;
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
