forked from cromer/pamac-classic
6 lines
146 B
Bash
Executable File
6 lines
146 B
Bash
Executable File
#! /bin/sh
|
|
|
|
for i in `ls ./ | sed s'|.po||'` ; do
|
|
msgmerge --update --no-fuzzy-matching --add-location=file --backup=none ./$i.po pamac.pot
|
|
done
|