Differences
This shows you the differences between the selected revisions of the page.
| 2005-12-05 | 2006-05-07 | ||
| 3.8 *.* exception (martin) | 3.8.1 size masks (martin) | ||
| Line 15: | Line 15: | ||
| | ''[abc]'' | Matches one character from the set. | ''index_[abc].html'' | | | ''[abc]'' | Matches one character from the set. | ''index_[abc].html'' | | ||
| | ''[a-z]'' | Matches one character from the range. | ''index_[a-z].html'' | | | ''[a-z]'' | Matches one character from the range. | ''index_[a-z].html'' | | ||
| + | | ''>size'' | Matches files (never directory) larger than ''size'' (''K'', ''M'' and ''G'' units can be used). This rule must be used after the file name mask (if any). | ''*.bin>1M'' | | ||
| + | | ''<size'' | Matches files smaller than ''size''. | ''<1G'' | | ||
| All other characters are treated literally. | All other characters are treated literally. | ||