mirror of
https://github.com/mirror/wget.git
synced 2025-01-06 10:20:56 +08:00
14 lines
153 B
Bash
Executable File
14 lines
153 B
Bash
Executable File
#!/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
|
|
done
|