Find files and show the content recursively in unix.
find . -name "readme" -exec head {} \;
find . -name "readme" | xargs head
Find files and show the content recursively in unix.
find . -name "readme" -exec head {} \;
find . -name "readme" | xargs head
Leave a Reply
You must be logged in to post a comment.