aboutsummaryrefslogtreecommitdiff
path: root/scripts/.scripts/cpp_template.sh
blob: 6165f51021367729c3f96b96a2107347294e1a6d (plain)
1
2
3
4
5
6
7
8
#!/bin/sh

touch $1.cpp
echo -e "#include<bits/stdc++.h>\n\nusing namespace std;\n\nint main () {\n}" > $1.cpp
nvim $1.cpp