Skip to content

Instantly share code, notes, and snippets.

View asadbukhari2's full-sized avatar
🎯
Focusing

Asad Bukhari asadbukhari2

🎯
Focusing
View GitHub Profile
@bradtraversy
bradtraversy / myscript.sh
Last active June 18, 2025 20:35
Basic Shell Scripting
#! /bin/bash
# ECHO COMMAND
# echo Hello World!
# VARIABLES
# Uppercase by convention
# Letters, numbers, underscores
NAME="Bob"
# echo "My name is $NAME"