info-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: delete 400+ files from cvs


From: Xicheng
Subject: Re: delete 400+ files from cvs
Date: 31 Jan 2006 21:25:01 -0800
User-agent: G2/0.2

comeon wrote:
> Dear friends:
>
> I need to remove 400+ Fortran files from a CVS directory. Basically, I
> need to remove the whole directory. Is there any way to remove the
> whole directory? Do I need to remove the file one by one? There 400+ of
> them! Removing them one by one is lot of works. The OS is Linux.
I generally do something like this:
===========================
find . -type d -name CVS -prune -o -type f -name "*.[Ffh]" -print -exec
cvs rm -f {} \;
# this doesnot "cvs remove" files under CVS directories...
cvs ci -m"removing all Fortran files under dir"
cvs up -P
===========================
Xicheng

> 
> Your hint is highly appreciated!!!
> 
> Chandler



reply via email to

[Prev in Thread] Current Thread [Next in Thread]