Skip to content

Instantly share code, notes, and snippets.

View StephenChege's full-sized avatar

Stephen Chege StephenChege

  • Nairobi
View GitHub Profile
@StephenChege
StephenChege / myscript.sh
Created May 3, 2022 16:27 — 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"