Skip to content

Instantly share code, notes, and snippets.

View csulit's full-sized avatar

Christian Angelo M Sulit csulit

  • KMC Solutions
  • Philippines
View GitHub Profile
@csulit
csulit / myscript.sh
Last active May 14, 2020 15:55 — 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"