How to collect all the list of files along with the permissions

Hi guys,

I have one problem.
I need collect the list files along with the file permissions in all directories in one server.
Is their any easy way to collect using any commands or any scripts?

Advance Thanks
:slight_smile:

find / -type f -exec ls -la {} \;

Something like this?

A much faster solution is:-

find / -type f  | xargs ls -ltra

:D:D:D:D