Monday, July 16, 2012

Remove VSS files from a project in Linux

To remove all the VSS (if you dont' know Visual Source Safe) files of an ancient project before importing it to a new VCS, i executed the following command


find . -name "vssver.scc" -exec rm -rf {} \;