Filenames, Wildcards and Pathname Expansion: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
| Line 29: | Line 29: | ||
| row 2, cell 2 | | row 2, cell 2 | ||
| row 2, cell 3 | | row 2, cell 3 | ||
|} | |||
{| class="wikitable" style="margin: 1em auto 1em auto" | |||
|+ '''Cells left-aligned, table centered''' | |||
! Duis || aute || irure | |||
|- | |||
| dolor || in reprehenderit || in voluptate velit | |||
|- | |||
| esse cillum dolore || eu fugiat nulla || pariatur. | |||
|} | |} | ||
Revision as of 22:18, 28 October 2009
Basic Wildcards
Wildcard Matches ? Any single character
- Any string of character
[set] Any character in set [!set] Any character not in set
aap
? a * a [set] [!set]
aap
| header 1 | header 2 | header 3 |
|---|---|---|
| row 1, cell 1 | row 1, cell 2 | row 1, cell 3 |
| row 2, cell 1 | row 2, cell 2 | row 2, cell 3 |
| Duis | aute | irure |
|---|---|---|
| dolor | in reprehenderit | in voluptate velit |
| esse cillum dolore | eu fugiat nulla | pariatur. |