Add CVS Directories and Files recursively


/ Published in: Bash
Save to your folder(s)



Copy this code and paste it in your HTML
  1. find . -type d -print0 | grep -v "CVS" | xargs -0 cvs add
  2. find . -type f -print0 | grep -v "CVS" | xargs -0 cvs add

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.