Forrest logo
back to the find tool

find:ai:e7406

cat all files named status recursively
$ find . -type f -name 'status' -exec cat {} \;
try on your machine

This command finds all files named 'status' in the current directory and its subdirectories, then prints the contents of these files to the standard output.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.

Questions that are answered by this command:

  • cat all files named status recursively?
back to the find tool