Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

In PowerShell:

    1..10 |%{ $s = 'worldsbestessays{0:d2}brew' -f $_; iwr "https://archive.org/download/$s/$s.pdf" -O "$s.pdf" }

    (% -> ForEach-Object; -f -> string format operator; iwr -> Invoke-WebRequest; -O -> -OutputFile parameter)


Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: