Problem A
ls
You are implementing an operating system, and now need to write a program to list files in a directory: “ls”. You want the user to be able to list only files that match a given pattern that can include wildcards (*), for example *.c. A wildcard matches zero or more characters of any kind.
Input
The first line contains a string
Output
The output shall consist of the filenames that match the
pattern,
Sample Input 1 | Sample Output 1 |
---|---|
*.* 4 main.c a.out readme yacc |
main.c a.out |
Sample Input 2 | Sample Output 2 |
---|---|
*a*a*a 4 aaa aaaaa aaaaax abababa |
aaa aaaaa abababa |