mirror of
https://github.com/nitraiolo/CfgUSBLoader.git
synced 2025-01-09 09:49:26 +01:00
14 lines
327 B
Bash
14 lines
327 B
Bash
|
#!/bin/sh
|
||
|
for L in *.lang ; do
|
||
|
echo $L
|
||
|
./msgreplace.pl "Press " "\b[AB12]\b" "%s" < $L > $L.new
|
||
|
mv $L.new $L
|
||
|
./msgreplace.pl "Press " "[-+] " "%s " < $L > $L.new
|
||
|
mv $L.new $L
|
||
|
./msgreplace.pl "Press " "Home" "%s" < $L > $L.new
|
||
|
mv $L.new $L
|
||
|
./msgreplace.pl "Press " "LEFT/RIGHT" "%s/%s" < $L > $L.new
|
||
|
mv $L.new $L
|
||
|
done
|
||
|
|