Skip to content

Instantly share code, notes, and snippets.

View BertiKarsunke's full-sized avatar

Yi Seong Zin BertiKarsunke

  • Seoul
View GitHub Profile
@bradtraversy
bradtraversy / myscript.sh
Last active August 28, 2025 00:00
Basic Shell Scripting
#! /bin/bash
# ECHO COMMAND
# echo Hello World!
# VARIABLES
# Uppercase by convention
# Letters, numbers, underscores
NAME="Bob"
# echo "My name is $NAME"