I need to run the following command with a for loop
cat Locate\\ Message.eml | ./locatePipe.php
I am trying the following however it seems
I accomplished this using the following command
find -name '*.eml' | while read email; do cat "$email" | ./locatePipe.php; done