On Fri, Dec 17, 2010 at 10:18:42AM +0100, [email protected] wrote: > I want to mirror all the boo directory excluding the /boo/temp directory. > > If i use the following command line: > > mirror -c -X "temp/" boo/ ./ > > both the temp directories are excluded. > > if I use: > > mirror -c -X "boo/temp/" boo/ ./ > > nothing is excluded. > > The -x option doesn't solve the problem.
The base directory is not included in matching. Try -x "^temp/" -- Alexander.
