On Sat, Jul 20, 2002 at 04:11:03PM +0100, John Levon wrote:
> > >cvs remove -f *.html
>
> Coo, neither is it. I wonder how I found out ...
>From the info page:
As a convenience you can remove the file and `cvs remove' it in one
step, by specifying the `-f' option. For example, the above exa
On Sat, Jul 20, 2002 at 12:49:55PM +0200, Jean-Marc Lasgouttes wrote:
> >how can I remove all files in a cvs dir?
> >cvs remove *.html f.ex. doesn't work
>
> You must remove them physically first
> [...]
> files=`ls *.html`
> rm $files
> cvs rm $files
Or force it:
cvs rm -f *.html
Andre'
-