linux - How to list the files inside directory and sub directories? -
I have a directory and it has sub-directories which are text files, now I want to list all .txt How to do files in sub-directories with paths?
Try it out:
Find / Type f -name \ *. Txt This will give you '.' Will give all .txt files in / directory.
Comments
Post a Comment