From: Charlie B. <cha...@e-...> - 2003-12-05 15:43:53
|
[Please learn not to top-post.] On Thu, 4 Dec 2003, Deon Grobler wrote: > fine. So yeah, its a Linux issue, any idea's what the problem could be? Is > there a way to get the OS to support the -E attrib? 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 . "; } 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? |