Done and done One note: On 12/21/06, Dan McGee <dpmcgee at gmail.com> wrote: > - rm -rf "$SRCDEST"/* > + rm -rf "$SRCDEST/*" This won't glob anymore. It will try to remove a literal file named "*" e.g. $ mkdir "a b" $ touch "a b/foo" $ ls "a b/*" ls: cannot access a b/*: No such file or directory $ ls "a b"/* a b/foo