方法一:
find . -name "file" -type f | xargs cat
 
方法二:
cat `find . -name "file" -type f `
 
方法三:
find . -name "file" -type f -exec cat {} \;
Logo

更多推荐