From d11c9fb8304ca8678c2ed0ef669307d9425c551b Mon Sep 17 00:00:00 2001 From: stan <114278820+stanleyedward@users.noreply.github.com> Date: Sun, 4 Aug 2024 09:56:57 +0530 Subject: [PATCH] Update README.md --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index d95552b..8f39571 100644 --- a/README.md +++ b/README.md @@ -1,21 +1,21 @@ -# goodbye-world script +# bye -### step 0 install nasm (varies from distributions-to-distributions) +### step 0 install nasm ```sh sudo pacman -S nasm ``` -### step 1 compiling the nasm file +### step 1 compile the nasm file ```sh nasm -f elf64 goodbye_world.nasm -o goodbye_world.o ``` -### step 2 linking +### step 2 link ```sh ld goodbye_world.o -o goodbye_world ``` -### step 3 run the script +### step 3 run the script :D ```sh ./goodbye_world ```