Re: CVS Delete All Files

2000-06-06 Thread Eric Siegerman
On Tue, Jun 06, 2000 at 11:47:57AM +0200, Fredrik Liljegren wrote: find . -type f -print | grep -v CVS | xargs rm xargs "cvs rm" ..I'm not totally sure how to execute two commands on the stdin-files, but something like that should do. This won't work. It's parsed as: (find ... |

Re: CVS Delete All Files

2000-06-06 Thread Avi Green
On Tue, Jun 06, 2000 at 11:47:57AM +0200, Fredrik Liljegren wrote: I'm not totally sure how to execute two commands on the stdin-files Eric Siegerman wrote: The only way I can think of to do this is to save the list in an intermediate buffer. Here's a way (should work for sh, ksh, bash):

Re: CVS Delete All Files

2000-05-27 Thread Mike
Unthinkable maybe, but MS VSS allows it! Michael C. Amorose Author FireUtils for Macintosh Author Sound Core for Macintosh Author Goo Library for Macintosh FireWire Watch Webmaster http://www.fireutils.com http://www.soundcore.com http://www.michael-amorose.com/goolibrary

Re: CVS Delete All Files

2000-05-26 Thread Mike
Yes, i realize i need to do a recursive delete, but that is exactly the thing i am asking: what is the syntax of the command? Michael C. Amorose Author FireUtils for Macintosh Author Sound Core for Macintosh Author Goo Library for Macintosh FireWire Watch Webmaster http://www.fireutils.com

Re: CVS Delete ALl Files

2000-05-26 Thread Rich Salz
Can anyone give me a simple command that will remove all existing files from a repository, but not remove the repository itself? cd /path/to/your/repository find . -type f -print | grep -v CVSROOT | xargs rm

RE: CVS Delete All Files

2000-05-26 Thread Dennis Jones
how about: rm -r [directory name] - Dennis -Original Message- From: Mike [mailto:[EMAIL PROTECTED]] Sent: Friday, May 26, 2000 10:04 AM To: [EMAIL PROTECTED] Subject: Re: CVS Delete All Files Yes, i realize i need to do a recursive delete, but that is exactly the thing i am asking