#! /bin/bash # # $Id$ # # Copyright (C) 2004-5 Pavan Balaji # Computer Science and Engineering, The Ohio State University # CVS2CL=/home/balaji/Temp/Working/cvs2cl.pl startdir=$PWD for i in `cat CVS/Repository | sed -e 's_/_\n_g' | sed -e '1d'`; do cd ..; done $CVS2CL --prune --no-common-dir --ignore ChangeLog cd $startdir # FIXME: Commit the changelog back in if [ "`echo $@`" != "ChangeLog" ]; then echo -n "Run cvs commit from the root directory again to checkin the " echo "ChangeLog" fi