forked from GEJ1/python101-2017-1c
-
Notifications
You must be signed in to change notification settings - Fork 0
/
execute.txt
24 lines (16 loc) · 810 Bytes
/
execute.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
cd ........./1.0-comenzando/src/ejemplosC
mkdir build
make clean (clean de compilación)
make all (compila)
Ejecutar directamente en C
./build/hello
Puro python 1000000 números
python pure_python.py
Puro python3 1000000 números
python3.6 pure_python.py
Python ejecuntando C 1000000 números
python helloWithC.py
Python llamando por consola C++ (ejecutable) 1000000 números
python helloWithC-2.py
Todo junto:
make all && echo -e "\n \n \nPuro python 1000000 números" && python pure_python.py && echo -e "Puro python3.6 1000000 números" && python3.6 pure_python.py && echo "Python ejecuntando C 1000000 números" && python helloWithC.py && echo "Python llamando por consola C++ (ejecutable) 1000000 números" && python helloWithC-2.py && echo "Puro C++ (ejecutable) 1000000 numeros"&& ./build/hello