convertcfg.pl

来自「架設ROSE私服必備之物 ROSE數據庫」· PL 代码 · 共 20 行

PL
20
字号
#!/usr/bin/perl## $Id: convertcfg.pl 5152 2003-11-18 15:20:45Z nijel $## 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; 	}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?