Linux.com

Re:Use RCS instead

Posted by: sakshale on March 10, 2006 05:45 AM
I also use RCS, but with vi... by having a simple script in my path;

#!/bin/sh
#
for file in $*
do

                co -l $file && vim $file && ci -u $file
done

I've used this script, literally, for decades.

#

Return to Using versioning for your configuration files