I am using mrjob to process a batch of files and get some statistics. I know I can run mapreduce job on a single file, like
python count.py < some_input_file > output
But how can I feed a directory of files to the script? The file directory structure is like this folder/subfolders/files
, is there any suggestion?