mirror of
https://github.com/mirror/wget.git
synced 2024-12-27 13:20:23 +08:00
8 lines
109 B
Bash
Executable File
8 lines
109 B
Bash
Executable File
#!/bin/bash
|
|
|
|
#cd po
|
|
for i in *.po
|
|
do
|
|
wget http://www.iro.umontreal.ca/translation/maint/wget/$i -O $i
|
|
done
|