Linux shell command, recursive cvs add:
cvs -qn update | grep -v CVS | xargs cvs add
or even
find . -type d -print | grep -v CVS | xargs cvs add find . -type f -print | grep -v CVS | xargs cvs add
Linux shell command, recursive cvs add:
cvs -qn update | grep -v CVS | xargs cvs add
or even
find . -type d -print | grep -v CVS | xargs cvs add find . -type f -print | grep -v CVS | xargs cvs add
September 10th, 2009 at 3:29 pm
Can u please explain how will it work?
find . -type d -print | grep -v CVS | xargs cvs add
I m not much aware of shell script..
Thanks,
jamnes