Skip to content

Instantly share code, notes, and snippets.

View 4dave's full-sized avatar

Dave Fredkove 4dave

View GitHub Profile
@4dave
4dave / myscript.sh
Created May 14, 2021 16:04 — 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"