When I type sth. like that
find . -name *foo* | ls -lah
it gives me a ls-output of 'pwd' like I had no file(s) given to 'ls'.
To simply use
ls -lah $( find . -name *foo* )
works well (when the 'find' command has results).
Is it possible to pipe to 'ls' ?