Skip to main content
added 1 character in body
Source Link

This should work:

find . -type f -name '*a*' -exec cat {} +\; 

This should work:

find . -type f -name '*a*' -exec cat {} + 

This should work:

find . -type f -name '*a*' -exec cat {} \; 
cat can take more than one file argument. The . is required by POSIX and some find implementations
Source Link
Stéphane Chazelas
  • 586.9k
  • 96
  • 1.1k
  • 1.7k

This should work:

find . -type f -name '*a*' -exec cat {} \;+ 

This should work:

find -type f -name '*a*' -exec cat {} \; 

This should work:

find . -type f -name '*a*' -exec cat {} + 
Source Link

This should work:

find -type f -name '*a*' -exec cat {} \;