Your IP : 216.73.216.40


Current Path : /var/www/html/mmishra/indem/dba/lang/
Upload File :
Current File : /var/www/html/mmishra/indem/dba/lang/add_message_file.sh

#!/bin/bash
# $Id: add_message_file.sh,v 1.4 2002/08/10 04:19:33 robbat2 Exp $
#
# Shell script that adds a message file to all message files 
# adding "//to translate" on each line 
#
# Example:  add_message_file.sh  xxx
#
for file in *.inc.php3
do
    echo $file " "
    grep -v '?>' ${file} > ${file}.new
    sed 's/;/;\/\/to translate/' <$1 >> ${file}.new
    echo "?>" >> ${file}.new
    rm $file
    mv ${file}.new $file
done
echo " "
echo "Messages added to add message files (including english)"