Skip to content

Instantly share code, notes, and snippets.

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

Richard C.N iamRichardCN

🏠
Working from home
View GitHub Profile
@iamRichardCN
iamRichardCN / myscript.sh
Created November 10, 2022 08:16 — 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"