mirror of
https://gitlab.com/mfocko/Codeforces.git
synced 2024-11-09 13:49:06 +01:00
11 lines
179 B
Bash
11 lines
179 B
Bash
#!/bin/sh
|
|
|
|
function get_contest() {
|
|
mkdir $1
|
|
curl -Lk https://codeforces.com/contest/$1/problems -o $1/index.html
|
|
}
|
|
|
|
for contest in "$@"
|
|
do
|
|
get_contest $contest;
|
|
done
|