Solved How to use find for file attributes

I was tinkering with find(1) and it has an -ls option which appears to show file attributes but I can't figure out what is the problem:
find / -name -ls 'libc.so*'
find: libc.so*: unknown primary or operator

Is the -name feature blocking -ls option flags ?
 
Back
Top