8 lines
91 B
Bash
Executable File
8 lines
91 B
Bash
Executable File
#!/usr/bin/bash
|
|
|
|
gcc main.c -o a.out
|
|
|
|
nasm -f elf64 main.asm -o b.o
|
|
ld b.o -o b.out
|
|
rm b.o
|