#!/bin/sh target=lnxhello rm -f $target nasm -f elf ${target}.asm gcc -o ${target} ${target}.c ${target}.o ./${target}