Hi Steve On Tue, Dec 29, 2009 at 7:50 PM, Steve Bertrand <[email protected]> wrote: > Hi all, happy holidays! > > I want to add an alias to my .cshrc file: > > alias srm find . -name "*~" | xargs rm >
Try enclosing it in quotes, such as: alias srm "find . -name \"*~\" | xargs rm" Regards, -- Glen Barber _______________________________________________ [email protected] mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[email protected]"
