mirror of
https://gitlab.com/mfocko/Codeforces.git
synced 2024-11-09 13:49:06 +01:00
7 lines
87 B
Bash
7 lines
87 B
Bash
#!/bin/sh
|
|
|
|
for TASK in a b c d e f g h;
|
|
do
|
|
cp src/main.rs src/bin/$TASK.rs;
|
|
done;
|
|
|