It is required to receive the list of all symbolic links in the directory, ignoring some subdirectories.
I tried this:
find -L ./ -xtype l ! -path "./proc/*" ! -path "./sys/*" ! -path "./dev/*" 2> /dev/null but displays not all symbolic links, but only those in the etc / directory.