This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revision | |||
public:techstuff:bashwildcards [2012/08/21 13:51] – Deleted by PageMove plugin nathan | public:techstuff:bashwildcards [2020/04/25 13:05] (current) – created - external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ====== Bash Wildcards ====== | ||
+ | | **Wildcard** | ||
+ | |*|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, |