On Tue, Oct 20, 2009 at 12:56:02AM -0400, Joshua Paine wrote:
> On Tue, 2009-10-20 at 12:43 +0800, Michael Richter wrote:
> > fossil: no such file: /home/michael/junk/d
> > mich...@isolde:~/junk$ fossil rm d
> 
> This was the very first thing I tried... and I just figured out why it
> didn't work.
> 
> I had accidentally added a directory of several dozen files. Not wanting
> to fossil rm each one, I tried to:
> 
> > fossil rm dir/*
> fossil: not in the repository: dir
> 
> There's no quick solution for my screw up, is there?
> 
> -- 
> Joshua Paine  
> LetterBlock: Web applications built with joy  
> http://letterblock.com/  
> 301-576-1920
> 
_________________________________________________________

 I have done similar and found no single command to
 take care of a directory and contents.  Hence the
 following


$ for arg in dir/* ; do echo fossil rm ${arg} ; done

 ...

$
$ for arg in dir/* ; do fossil rm ${arg} ; done


 I usually throw in the 'echo' first to check before I
 do something potentially drastic.  Then remove the
 echo if it looks like what I want.


~Michael
_______________________________________________
fossil-users mailing list
[email protected]
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users

Reply via email to