recursively add directory and files to cvs from Linux.
Go to the directory which you want to add to cvs and execute the following:
cvs login
find . -type d -exec cvs add {} \;
find . -type f -exec cvs add {} \;
cvs commit
That was simple π
Related Articles:
- 2010/04/11 Linux Shell Scripting Tutorial β A Beginner\βs handbook
- 2010/04/11 Another nice utility for blogging from within firefox.
- 2010/04/11 Advanced Sed Substitution Examples
- 2010/04/11 Linux Links β collection of universe.. all links on everything about linux
- 2010/04/11 Bugzilla Automation with perl β add, update or query any bug in Bugzilla using perl and www series modules for perl.
Authored By Amit Agarwal
Amit Agarwal, Linux and Photography are my hobbies.Creative Commons Attribution 4.0 International License.