This manual is deprecated. Please visit https://groupoffice.readthedocs.io for the latest documentation. |
Difference between revisions of "Linux commands"
From Group-Office Groupware and CRM Documentation
Line 5: | Line 5: | ||
− | + | Remove all .svn directories except for the actual theme dirs | |
− | + | find ! -path "*/ThemeName/*" -name .svn -type d -exec rm -Rf {} \; | |
− | find | + |
Revision as of 10:14, 14 August 2009
Find all symbolic links to a specific directory:
find -maxdepth 2 -type l -exec stat {} \; | grep /usr/local/trunk
Remove all .svn directories except for the actual theme dirs find ! -path "*/ThemeName/*" -name .svn -type d -exec rm -Rf {} \;