Skip to content

Instantly share code, notes, and snippets.

View balajisomasale's full-sized avatar
🏠
Working from home

Balaji Somasale balajisomasale

🏠
Working from home
View GitHub Profile
@balajisomasale
balajisomasale / myscript.sh
Created May 4, 2022 16:11 — 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"