mirror of
https://github.com/nitraiolo/CfgUSBLoader.git
synced 2025-01-09 01:40:43 +01:00
19 lines
305 B
Bash
19 lines
305 B
Bash
#!/bin/sh
|
|
|
|
function del_bom
|
|
{
|
|
perl -e '@file=<>;$file[0] =~ s/^\xEF\xBB\xBF//;print(@file);'
|
|
}
|
|
|
|
function add_bom
|
|
{
|
|
perl -e '@file=<>;print "\xEF\xBB\xBF";print(@file);'
|
|
}
|
|
|
|
for L in *.lang ; do
|
|
LM=`basename $L .lang`_miss.lang
|
|
echo $L $LM
|
|
del_bom < $L | msgattrib --untranslated | add_bom > $LM
|
|
done
|
|
|