2.31 After creating several links with the NEWLINK command, I was wondering if there is a way to see all links in effect on the system and for each link, the complete file name referred to by the link? I don't find a LISTLINK or SHOWLINK command.

LISTFILE linkname,7 shows the target of the link.

LISTFILE /,7;seleq=[object=symlink] shows all symbolic links on your system.

The shell solution is: find / -type l | xargs ls -l