mirror of
https://github.com/mirror/wget.git
synced 2025-02-15 14:20:43 +08:00
8 lines
109 B
Bash
8 lines
109 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
#cd po
|
||
|
for i in *.po
|
||
|
do
|
||
|
wget http://www.iro.umontreal.ca/translation/maint/wget/$i -O $i
|
||
|
done
|