Perhaps something along the lines of:That will output the contents of every file in your System folder. Just remember that you can stop it by pressing Control-C.Code:find /System -type f -print0 | xargs -0 cat
You could fine-tune the criteria of the find command to select only certain kinds of files, and of course you could point it to any directory you want.




LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks