Your IP : 216.73.216.40


Current Path : /var/www/html/mmishra/indem/dba/scripts/
Upload File :
Current File : /var/www/html/mmishra/indem/dba/scripts/convertcfg.pl

#!/usr/local/bin/perl
#
# $Id: convertcfg.pl,v 1.1 2002/04/24 19:14:04 robbat2 Exp $
#
# Configuration converter
# Converts from old-style (Pre-2.3) configuration files to new format found in PMA-2.3
#
# Takes input from STDIN, sends output to STDOUT
#
# By Robin Johnson robbat2@users.sourceforge.net
# Many thanks to Patrick Lougheed pat@tfsb.org
#

while(<>) 
{	s/\$cfg(\w+)/\$cfg\[\'$1\'\]/g; 
	print; 
	}