home *** CD-ROM | disk | FTP | other *** search
/ PC World 2000 February / PCWorld_2000-02_cd.bin / live / usr / X11R6 / lib / X11 / cbb / contrib / upgrade-splits.pl < prev    next >
Perl Script  |  1998-10-07  |  3KB  |  96 lines

  1. #!/usr/bin/perl
  2. #  upgrade-splits.pl - add a comment field to all splits.  Do not run this on
  3. #    your data file more than once!
  4. #
  5. #  Usage: upgrade-splits.pl <data-dir>
  6. #
  7. #  WARNING:  BACKUP ALL YOUR DATA FIRST!!!!!!!!!!!!!!!!!!!!!!!!!!!!
  8. #
  9. #  Written by Curtis Olson.  Started July 17, 1995.
  10. #
  11. #  Copyright (C) 1995  Curtis L. Olson  - curt@sledge.mn.org
  12. #
  13. #  This program is free software; you can redistribute it and/or modify
  14. #  it under the terms of the GNU General Public License as published by
  15. #  the Free Software Foundation; either version 2 of the License, or
  16. #  (at your option) any later version.
  17. #
  18. #  This program is distributed in the hope that it will be useful,
  19. #  but WITHOUT ANY WARRANTY; without even the implied warranty of
  20. #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  21. #  GNU General Public License for more details.
  22. #
  23. #  You should have received a copy of the GNU General Public License
  24. #  along with this program; if not, write to the Free Software
  25. #  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  26.  
  27. # $Id: upgrade-splits.pl,v 2.2 1996/07/13 02:58:24 curt Exp $
  28. # (Log is kept at end of this file)
  29.  
  30.  
  31. # specify the installed location of the necessary pieces.
  32. $cbb_incl_dir = "..";
  33. unshift(@INC, $cbb_incl_dir);
  34.  
  35. require "engine.pl";
  36.  
  37. ($#ARGV >= 0) || 
  38.     die "Usage: upgrade.pl <data-dir>";
  39.  
  40. print <<"EndOfWarning";
  41. This program upgrades your commentless splits to splits with comments.
  42.  
  43. You are strongly encouraged to make BACKUPS of all your data before
  44. attempting to do this!!!
  45.  
  46. EndOfWarning
  47.  
  48. print "Do you wish to continue? (yes/no) [no] ";
  49.  
  50. $response = <STDIN>;
  51.  
  52. if ( $response =~ m/yes/i ) {
  53.     print "Ok, continuing:\n";
  54. } else {
  55.     die "Bailing out ... nothing was done to your data.\n";
  56. }
  57.  
  58.  
  59. $dir = shift(@ARGV);
  60.  
  61. -e $dir || die "Specified data directory:  '$dir' does not exist\n";
  62.  
  63. print "\n";
  64. foreach $file ( `ls $dir/*.dir $dir/*.cbb` ) {
  65.     chop($file);
  66.  
  67.     print "Fixing splits in '$file'\n";
  68.  
  69.     $result = &load_trans($file);
  70.     die "Cannot open account:  $file" if ( $result eq "error" );
  71.  
  72.     # %TRANS & @KEYS are setup during the load_trans() call
  73.     foreach $key ( sort keys %TRANS ) {
  74.     $TRANS{$key} = &fix_splits($TRANS{$key});
  75.     }
  76.  
  77.     if ( $file =~ m/\.cbb$/ ) {
  78.         &save_trans("$file");
  79.     }
  80. }
  81.  
  82. print "\n";
  83. print "Successfully fixed splits ... we hope :)\n";
  84.  
  85.  
  86. # ----------------------------------------------------------------------------
  87. # $Log: upgrade-splits.pl,v $
  88. # Revision 2.2  1996/07/13 02:58:24  curt
  89. # Misc. changes.
  90. #
  91. # Revision 2.1  1996/02/27  05:36:05  curt
  92. # Just stumbling around a bit with cvs ... :-(
  93. #
  94. # Revision 2.0  1996/02/27  04:43:15  curt
  95. # Initial 2.0 revision.  (See "Log" files for old history.)
  96.