aboutsummaryrefslogtreecommitdiff
path: root/scripts/.scripts/cpp_ps.sh
blob: b2c260072cb03003f2e3ea25b63a155e933c837b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh
echo -e "Are you sure? y)es n)o"
read input
if [ "$input" = "y" ]; then
  mkdir $1
  cd $1
  cp ~/test/cptemplate/main.cpp .
  nvim main.cpp
fi