[ Index ] |
|
Code source de phpMyAdmin 2.10.3 |
1 #!/bin/bash 2 # $Id: add_message.sh 9537 2006-10-12 16:27:13Z nijel $ 3 # 4 # Shell script that adds a message to all message files (Lem9) 5 # 6 # Example: add_message.sh '$strNewMessage' 'new message contents' 7 # 8 9 if [ $# -ne 2 ] ; then 10 echo "usage: add_message.sh '\$strNewMessage' 'new message contents'" 11 exit 1 12 fi 13 14 for file in *.inc.php 15 do 16 echo $file " " 17 grep -v '?>' $file} > $file}.new 18 case $file in 19 english*) 20 echo "$1 = '"$2"';" >> $file}.new 21 ;; 22 *) 23 echo "$1 = '"$2"'; //to translate" >> ${file}.new 24 ;; 25 esac 26 echo "?>" >> $file}.new 27 rm $file 28 mv $file}.new $file 29 done 30 ./sort_lang.sh english* 31 echo " " 32 echo "Message added to all message files (including english)"
titre
Description
Corps
titre
Description
Corps
titre
Description
Corps
titre
Corps
Généré le : Mon Nov 26 15:18:20 2007 | par Balluche grâce à PHPXref 0.7 |
![]() |