AlaK4X
Linux lhjmq-records 5.15.0-118-generic #128-Ubuntu SMP Fri Jul 5 09:28:59 UTC 2024 x86_64



Your IP : 3.145.88.111


Current Path : /var/www/lhjmq-records.qc.ca/public_html/phpmyadmin/lang/
Upload File :
Current File : /var/www/lhjmq-records.qc.ca/public_html/phpmyadmin/lang/remove_message.sh

#!/bin/bash
# $Id: remove_message.sh,v 2.0 2003/11/18 15:20:39 nijel Exp $
#
# Shell script that removes a message from all message files (Lem9)
# it checks for the message, followed by a space
#
# Example:  remove_message.sh 'strMessageToRemove' 
#

if [ $# -ne 1 ] ; then
    echo "usage: remove_message.sh 'strMessageToRemove'"
    exit 1
fi
    
for file in *.inc.php
do
    echo "lines before:" `wc -l $file`
    grep -v "$1 " ${file} > ${file}.new
    rm $file
    mv ${file}.new $file
    echo " lines after:" `wc -l $file`
done
echo " "