reversing order of diffs.

Nick Duffek nick@duffek.com
Mon, 18 Mar 2002 19:58:10 -0500 (EST)


On 17-Mar-2002, Donovan Baarda wrote:

>--include /home/*/arc/** --exclude /home/**

As a point of interest, you can do that now with Python's negative
lookahead assertion regex operator:

  --exclude '/home/[^/]+/(?!arc(?:\Z|/))'

However, I agree that the --include option would be much better.

Nick