]> sjero.net Git - wget/blob - util/update_po_files.sh
Merge with mainline
[wget] / util / update_po_files.sh
1 #!/bin/bash
2
3 for i in *.po
4 do 
5         mv $i $i.old
6
7         wget http://www.iro.umontreal.ca/translation/maint/wget/$i
8
9         if test -f $i
10         then 
11                 rm -f $i.old
12         fi
13 done