Learn about Linux
Download Linux
Get Linux help
Get special offers on:
Linux Application Dev Programming Software
Email:
#
Return to Using versioning for your configuration files
© Copyright 1999-2008 - SourceForge, Inc., All Rights Reserved About Linux.com - Privacy Statement - Terms of Use - Advertise - Trademark - Ask Linux Questions - Write for Us - RSS Feed ThinkGeek - Slashdot - SourceForge.net - freshmeat - Surveys - Jobs
Re:Use RCS instead
Posted by: sakshale on March 10, 2006 05:45 AM#!/bin/sh
#
for file in $*
do
co -l $file && vim $file && ci -u $file
done
I've used this script, literally, for decades.
#