I'm solving this wargame challenge:
http://overthewire.org/wargames/bandit/bandit5.html
where you have a directory with multiple files, one of which holds the password to the next level. To find the hidded password, you need to find the only file with text in it(the other ones have a file type "data").
I checked the contents of the files with the "file" command and I found the password but I began to wonder how can I do it with one command. I tried using find but I can't get it to work.
Question: How can I pipe the output of find into file?