Question

If file *.txt gets all text files from the current directory, how can I use it in order to get the text files from a specific directory and all its sub-directories?

Was it helpful?

Solution

maybe you are looking for

$ find . -name '*.txt' -exec file {} +
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top