aboutsummaryrefslogtreecommitdiff
path: root/scripts/.scripts/pscontests.sh
blob: 1536f96876596380fce1fb5b59b969a21f026007 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash

echo -n "Contest Name? : "
read
PROBLEMS="A B C D E F"
mkdir ${REPLY}
cd ${REPLY}
for p in $PROBLEMS
do
  touch $p.cpp
  echo -e "#include<bits/stdc++.h>\n\nusing namespace std\n\nint main () {\n\n}" > $p.cpp
done