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


You need to login to view comments.