From: Charlie B. <cha...@e-...> - 2003-12-05 16:02:52
|
On Fri, 5 Dec 2003, Deon Grobler wrote: > Hi Charline Or Charlie, perhaps. [I notice that you insist on top-posting. I consider that laziness at the expense of the many people you hope will help you. Please rethink. See .sig.] > FreeBSD 5.1 already has that built in. But clearly it is complaining: find: invalid predicate `-E' > It's no the OS, it's the find command. My guess is you just need to tell > flexbackup not to use -E. Modify this this block in /usr/bin/flexbackup > and see how you get on: > > ... > # FreeBSD wants -E to enable extended regex > if ($::uname =~ /FreeBSD/) { > $cmd .= "$::path{find} -E . "; Try this: > $cmd .= "$::path{find} . -E "; > } else { > $cmd .= "$::path{find} . "; > } > ... -- Charlie Brady cha...@mi... Mitel Networks Corporation http://www.mitel.com/ Phone: +1 (613) 592 5660 or 592 2122 Fax: +1 (613) 592 1175 A: Because we read from top to bottom, left to right. Q: Why should i start my reply below the quoted text? |