You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
For ($year=1; $year -le 15; $year++ ) {
|
|
mkdir "vst/year$(([string]$year).PadLeft(2, '0'))"
|
|
|
|
For ($day=1; $day -le 8; $day++) {
|
|
Invoke-WebRequest https://vst.ninja/DB$year/synced_data/day$day.csv -o "vst/year$(([string]$year).PadLeft(2, '0'))/day$day.csv"
|
|
}
|
|
} |