From: Wayne Davison Date: Mon, 15 Sep 2008 02:57:02 +0000 (-0700) Subject: Remove bogus "non-empty" qualifier in '*' discussion. X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/7fdb3bdab98bea4d367423c631be9964df7e03a9?hp=794d033981cc87f8b9d2219b977df56873299ff8 Remove bogus "non-empty" qualifier in '*' discussion. --- diff --git a/rsync.yo b/rsync.yo index 79cbf07d..6eb226fb 100644 --- a/rsync.yo +++ b/rsync.yo @@ -2401,7 +2401,7 @@ itemization( it() rsync chooses between doing a simple string match and wildcard matching by checking if the pattern contains one of these three wildcard characters: '*', '?', and '[' . - it() a '*' matches any non-empty path component (it stops at slashes). + it() a '*' matches any path component, but it stops at slashes. it() use '**' to match anything, including slashes. it() a '?' matches any character except a slash (/). it() a '[' introduces a character class, such as [a-z] or [[:alpha:]].