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
@bradtraversy
bradtraversy / myscript.sh
Last active July 30, 2025 13:09
Basic Shell Scripting
#! /bin/bash
# ECHO COMMAND
# echo Hello World!
# VARIABLES
# Uppercase by convention
# Letters, numbers, underscores
NAME="Bob"
# echo "My name is $NAME"