-5

I need help doing the following:

Say I'm in /usr/bin and I want to run the ls command on a subdirectory of bin called datafiles from within bin.

I need to locate all files using ls that contain a dot . and contain the letters f or u anywhere after the dot.

How do I do this?

Thanks

4

1 回答 1

7

这是你想要的吗?

ls datafiles/*.*[fu]*
于 2013-08-27T04:44:45.403 回答