Skip to content

Instantly share code, notes, and snippets.

View asdbukhari's full-sized avatar
🎯
Focusing

Asad Bukhari asdbukhari

🎯
Focusing
View GitHub Profile
@asdbukhari
asdbukhari / myscript.sh
Created April 25, 2022 11:51 — forked from bradtraversy/myscript.sh
Basic Shell Scripting
#! /bin/bash
# ECHO COMMAND
# echo Hello World!
# VARIABLES
# Uppercase by convention
# Letters, numbers, underscores
NAME="Bob"
# echo "My name is $NAME"