What's the wildcard pattern for all files ending with e
Answers
Answered by
0
Answer:
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
a) "%e"
b) "b%h"
c) "___”
d) "a___"
e) "[aeiou]%"
f) "____[ed]"
g) "__e%"
h) "________"
I) "%h_"
j) "%"
Explanation:
Similar questions