|
|
<span style="font-family: Lucida, Helvetica, Arial, sans-serif; color: #000055;">Here's a list of the most commonly used wildcards in bash:
<div style="margin-top: 12px;" class="tuxtbl">| Wildcard | Matches | | * | zero or more characters | | ? | exactly one character | | [abcde] | exactly one character listed | | [a-e] | exactly one character in the given range | | [!abcde] | any character that is not listed | | [!a-e] | any character that is not in the given range | | {debian,linux} | exactly one entire word in the options given |
|
|