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