Skip to content

Instantly share code, notes, and snippets.

View arnavn101's full-sized avatar
🎯
Focusing

Arnav Nidumolu arnavn101

🎯
Focusing
View GitHub Profile
@bradtraversy
bradtraversy / myscript.sh
Last active May 16, 2025 08:30
Basic Shell Scripting
#! /bin/bash
# ECHO COMMAND
# echo Hello World!
# VARIABLES
# Uppercase by convention
# Letters, numbers, underscores
NAME="Bob"
# echo "My name is $NAME"