Skip to content

Instantly share code, notes, and snippets.

@ernestognw
Created December 7, 2018 19:08
Show Gist options
  • Save ernestognw/0ad465fd0e3d63661259baee6b790ab2 to your computer and use it in GitHub Desktop.
Save ernestognw/0ad465fd0e3d63661259baee6b790ab2 to your computer and use it in GitHub Desktop.
function cpp() {
mkdir $1;
cd $1;
touch $1.cpp;
now=$(date);
echo "// $1
// Ernesto García A00820783
// Creado en $now
#include<iostream>
using namespace std;
int main() {
// Declarar variables
// Desarrollo de tu programa
cout << \x22Tu programa con el nombre $1 creado correctamente\x22;
// Termina el programa
return 0;
}" > $1.cpp;
g++ $1.cpp -o $1.out;
./$1.out;
code $1.cpp;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment