Which of the following expression is a correct wildcard pattern if we want an expression in which the last character is not numeric?
(a) *[!0]
(b) *[0-9]
(c) [0-9]
(d) *[!0-9]
I have been asked this question during a job interview.
Question is taken from Shell Basics in division The Shell of Unix