User Tools

Site Tools


public:techstuff:bashwildcards

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
public:techstuff:bashwildcards [2012/08/21 13:50] – external edit 127.0.0.1public:techstuff:bashwildcards [2020/04/25 13:05] (current) – created - external edit 127.0.0.1
Line 1: Line 1:
 +====== Bash Wildcards ====== 
 +|  **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|