Hello. I am learning how to use Unix through an online course. Unfortunately the text that we use isn't very good, so I could use some help with a pretty basic question.
- Use metacharacters and the ll command to list all filenames under the datafiles directory that contain a dot "." with the letter 'a' anywhere after the dot.
So far, I've figured out
- ll datafiles \.
But I'm not sure how to look for a character after the dot. For that mater, I'm not sure how to list files containing a certain character. I know that
- a*
will list files beginning with a, and that using brackets will list a range of characters, but neither of those is what I'm looking for.
