On Sun, Oct 07, 2007 at 02:38:00PM +0200, Jérémie Lumbroso wrote: > I want to mirror folders TEST01 ... TEST09 to the local directory, so I do: > > mirror -i TEST0[1-9] ./ ./ > > But that also creates the nine FINAL01 ... FINAL09 folders as empty > folders (and it also creates the whole subtree of those folders).
Just exclude everything before -i: mirror -x . -i "^TEST0[1-9]/" -- Alexander.
