Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

wildcards linux

*  ------> Matches any characters
? -------> Matches any single character
[characters] Matches any character that is a member of the set of characters
[!characters] Matches any character that is NOT a member of the set of characters
[[:class:]] Matches any character that is a member of the specified class

eg: [[:upper:]]* any file that begins with an uppercase letter
 
PREVIOUS NEXT
Tagged: #wildcards #linux
ADD COMMENT
Topic
Name
4+2 =