Advertisement
Guest User

Untitled

a guest
Jun 23rd, 2017
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. #!/bin/bash
  2. clear
  3. echo Compilando y Linkeando Archivos
  4. echo
  5. nasm -f elf decode.asm
  6. gcc -o exec main.c decode.o asm_io.o
  7. sleep 2s
  8. echo
  9. echo
  10. echo Mostrando Numeros
  11. echo
  12. ./exec texto.txt
  13. echo
  14. echo
  15. echo
  16. echo Pulse Una Tecla Para Salir
  17. read salir
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement