I'm trying to display on a Unix system recursively all the files that start with an a
or ends with an a
with some info about them: name, size and last modified.
I tried find . -name "*a" -o -name "a*"
and it displays all the files okay but when I add -printf "%p %s"
it displays only one result.