Skip to content

Instantly share code, notes, and snippets.

@hackers-terabit
Created November 27, 2025 00:32
Show Gist options
  • Select an option

  • Save hackers-terabit/ff741d67f517b9ecd21269ae70c7ebe3 to your computer and use it in GitHub Desktop.

Select an option

Save hackers-terabit/ff741d67f517b9ecd21269ae70c7ebe3 to your computer and use it in GitHub Desktop.
Compile, link and run asm with nasm
#!/bin/bash
nasm -f elf64 $1 -o $2.o
ld $2.o -o $2
ls -la "$2"
./$2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment