| |
Wild card characters |
* , ? , [] ,-, . ,^,$
|
| |
Examples :: |
| |
| [ ] wild card |
| |
|
| $ ls [aeiou]ra |
|
It displays all files starting with 'a' or 'e' or 'i' or 'o' or 'u' character and ending with 'ra'. |
| $ ls [a-b]* |
It displays all files starting with any character from a to b. |
|
|
|
| . wild card |
|
| $ ls t..u |
|
It displays all files starting with 't' character and ending with 'u'.The length of the file must be4 characters.It never includes enter key character. |
|
|
|
| ^ wild card |
|
| $ ls ^sta |
|
It displays all files which starts with 'sta' and the length of the file must be 3 characters.. |
|
| $ wild card |
|
| $ ls *sta$ |
|
It displays all files which ends with 'sta'.The length of the word can be any number of characters. |
| |
| |
|
|