Wildcards

In the shell, you can use a feature called wildcards .

*

Wildcards mean match all filenames. It can be used as a command file name. Does not include hidden files.

For example, use it in combination with the find command.

find *

It means to give all files in the directory except hidden files as arguments to find.

Associated Information