List all the soft links and hard links

Hi

I'm logged in as root in an aix box

Which command will list all the soft links and hard links present in the server ?

You can find symbolic links with:

find / -type l

Finding hardlinked files is not so easy...

Finding the Hard Links:

find / -type f -links +1 -exec ls -liad {} \;

Please mention the version of AIX when posting.