Update of /cvsroot/linuxconsole/ruby/utils
In directory usw-pr-cvs1:/tmp/cvs-serv26905
Added Files:
cvmove
Log Message:
Tool for moving files in the CVS without losing revision number.
--- NEW FILE: cvmove ---
#!/bin/bash
mv $1 $2
cvs remove $1
cd $2
cvs add $1
cvs commit -r 1.`expr \`grep \\\\$Id: cvmove,v 1.1 2002/01/24 19:24:52 vojtech Exp $1 | sed -e "s/^.*,v 1\.//" | sed -e "s/200.*\\\\$//"\` + 1` -m Moved. $1
|