mirror of
https://github.com/moparisthebest/wget
synced 2024-07-03 16:38:41 -04: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
|