Clearing Magento Modman Symbolic Links

I have a mess of my Magento installation using modman, and now I have hundreds of unused symbolic links scattered around the source code.

How to remove these symbolic links and clear?

+5
source share
1 answer

If you just want to remove all symbolic links, run the following from the root of the web page:

 find . -type l -exec rm {} \;

If you want to delete all symbolic links and you have modman, recreate only those that should be there:

modman repair
+10
source

All Articles