Skip to content

Instantly share code, notes, and snippets.

View eichgi's full-sized avatar
💭
Learn and fail until you get it.

Hiram eichgi

💭
Learn and fail until you get it.
View GitHub Profile
@eichgi
eichgi / myscript.sh
Created February 14, 2019 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"