mirror of
https://github.com/nitraiolo/CfgUSBLoader.git
synced 2024-11-30 15:14:16 +01:00
12 lines
170 B
Bash
12 lines
170 B
Bash
#!/bin/sh
|
|
if [ $# != 3 ]; then
|
|
echo "usage: $0 msgid_text search replace"
|
|
exit
|
|
fi
|
|
for L in *.lang ; do
|
|
echo $L
|
|
./msgreplace.pl "$@" < $L > $L.new
|
|
mv $L.new $L
|
|
done
|
|
|