Это также поможет:
find . -type f -print -exec cat {} \;
Средства:
find = linux `find` command finds filenames, see `man find` for more info
. = in current directory
-type f = only files, not directories
-print = show found file
-exec = additionally execute another linux command
cat = linux `cat` command, see `man cat`, displays file contents
{} = placeholder for the currently found filename
\; = tell `find` command that it ends now here
Кроме того, вы можете комбинировать поисковые запросы с помощью логических операторов, таких как -and
или -or
. find -ls
тоже хорошо.