Este sitio web funciona mejor con JavaScript.
Inicio
Explorar
Ayuda
Iniciar sesión
Madiwka
/
CPSRC
Seguir
1
Destacar
0
Fork
0
Código
Incidencias
0
Pull Requests
0
Lanzamientos
0
Wiki
Actividad
Explorar el Código
initial commit
master
RinRi-D
hace 4 años
commit
e85cb97554
Se han
modificado 1 ficheros
con
18 adiciones
y
0 borrados
Dividir vista
Opciones de diferencias
Mostrar estadísticas
Descargar archivo de parche
Descargar archivo de diferencias
+18
-0
setup.sh
+ 18
- 0
setup.sh
Ver fichero
@@ -0,0 +1,18 @@
# create.sh
echo $'cp template.cpp $1.cpp\nnvim -s .gg $1.cpp' > create.sh
# template
read -n 1 -r -s -p $'Press any key to create template file...\n'
nvim template.cpp
# start line
read -p $'Enter starting line of cursor:\n' line
((line=line-1))
echo "$line"gg > .gg
# run.sh
echo $'g++ -g $1\n./a.out' > run.sh
# make all executable
chmod +x create.sh
chmod +x run.sh
Escribir
Vista previa
Cargando…
Cancelar
Guardar