Skip to content

Instantly share code, notes, and snippets.

View shawnbae's full-sized avatar

Soohan Bae shawnbae

  • Seoul, South Korea
View GitHub Profile
@bradtraversy
bradtraversy / myscript.sh
Last active May 15, 2024 16:27
Basic Shell Scripting
#! /bin/bash
# ECHO COMMAND
# echo Hello World!
# VARIABLES
# Uppercase by convention
# Letters, numbers, underscores
NAME="Bob"
# echo "My name is $NAME"