ls -lR dir/to/pipe | grep \\-rwxr\-xr\-x | awk '{ print $9 }' | bash
Which will pipe the executables from the "ls" command to awk for treatment and then to "bash" to be executed.
If you need to execute files treated from another way, just be sure they are arranged as one per line.