To match multiple characters, you can use the asterisk * wildcard. The asterisk matches any number of characters (including none). For example, if you want to match all files that start with "file" and have any characters following it, you can use:
ls file*.txt
This command would list files like file1.txt, file-abc.txt, and file.txt.
