Skip to content

Instantly share code, notes, and snippets.

View Amit-karn's full-sized avatar
🔥
Hustling

amit Amit-karn

🔥
Hustling
View GitHub Profile
@Amit-karn
Amit-karn / myscript.sh
Created September 24, 2021 05:41 — 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"