Write the wildcard pattern for the following.
a) All files ending with letter "e"
b) All files beginning with "b" and ending with "h"
c) All files having only three characters in filename
d) All files beginning with "a" and having four characters in name
e) All files starting with any vowel
f) All files either ending with "e" or "d", having only five characters
g) All files having "e" at third place in their filenames
h) All files having eight characters in their filenames
i) All files having "h" as the second last character in the filenames
i) All files
Answers
Answered by
6
Answer:
a) "%e"
b) "b%h"
c) "___”
d) "a___"
e) "[aeiou]%"
f) "____[ed]"
g) "__e%"
h) "________"
I) "%h_"
j) "%"
Similar questions