My goal is to have my cli program accept a stream of files
eg. Directory example_data has the following files
a.txtb.txtc.txt
I would like my rust program to handle something like the following
cargo run < example_data/*.txt
Is this type of setup possible? What's an alternative to this? I don't want to have to pass the file names individually to the program. Any suggestions?