A fork of RinRi's CPSRC. A tool for C++ Competitive programmers to do stuff
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

setup.sh 374 B

il y a 4 ans
123456789101112131415161718
  1. # create.sh
  2. echo $'cp template.cpp $1.cpp\nnvim -s .gg $1.cpp' > create.sh
  3. # template
  4. read -n 1 -r -s -p $'Press any key to create template file...\n'
  5. nvim template.cpp
  6. # start line
  7. read -p $'Enter starting line of cursor:\n' line
  8. ((line=line-1))
  9. echo "$line"gg > .gg
  10. # run.sh
  11. echo $'g++ -g $1\n./a.out' > run.sh
  12. # make all executable
  13. chmod +x create.sh
  14. chmod +x run.sh