I have a dir contains several sub-dirs:
./abc/
./cde/
./link_to_abc -> ./abc
abc and cde is normal directories, but link_to_abc is a soft link whose target is abc.
now I want to use linux's find command to find normal dirs without soft links, in my case, it is cde. how to do it?
because I need to delete some dirs, but I should check nobody use my files anymore(no other symbol link point to my dirs)