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
If you're using bash 4, just skip using find:
bash
find
shopt -s globstar for i in **/*.eml; do cat "$i" done | ./locatePipe.php