-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwget_file_list.sh
More file actions
executable file
·11 lines (8 loc) · 958 Bytes
/
wget_file_list.sh
File metadata and controls
executable file
·11 lines (8 loc) · 958 Bytes
1
2
3
4
5
6
7
8
9
10
11
#!/bin/bash
array=('03-09' '03-10' '03-11' '03-12' '03-13' '03-14' '03-15' '03-16' '04-01' '04-02' '04-03' '04-04' '04-05' '04-06' '04-07' '04-08' '04-09' '04-10' '04-11' '04-12' '04-13' '04-14' '04-15' '05-01' '05-02' '05-03' '05-04' '05-05' '05-06' '05-07' '05-08' '05-09' '05-10' '05-11' '05-12' '05-13' '05-14' '05-15' '06-01' '06-02' '06-03' '06-04' '06-05' '06-06' '06-07' '06-08' '06-09' '06-10' '06-11' '06-12' '06-13' '07-01' '07-02' '07-03' '07-04' '07-05' '07-06' '07-07' '07-08' '07-09' '07-10' '07-11' '07-12' '07-13' '07-14' '07-15' '08-01' '08-02' '08-03' '08-04' '08-05' '08-06' '08-08' '08-08' '08-09' '08-10' '08-11' '08-12' '08-13' '08-14' '09-01' '09-02' '09-03' '09-04' '09-05' '09-06' '09-09' '09-08' '09-09' '09-10' '09-11' '10-01' '10-02' '10-03' '10-04' '10-05' '10-06' '10-10' '10-08' '10-09' '10-10' '10-11')
base_url="https://s3.knigavuhe.org/1/audio/5230/"
for i in "${array[@]}"
do
url="${base_url}${i}.mp3"
wget $url
done