1
0
mirror of https://github.com/moparisthebest/wget synced 2024-07-03 16:38:41 -04:00
wget/util/update_po_files.sh

14 lines
153 B
Bash
Raw Normal View History

2005-08-16 18:37:10 -04:00
#!/bin/bash
for i in *.po
do
mv $i $i.old
wget http://www.iro.umontreal.ca/translation/maint/wget/$i
if test -f $i
then
rm -f $i.old
fi
2005-08-16 18:37:10 -04:00
done