Skip to content

Instantly share code, notes, and snippets.

View alimash76's full-sized avatar

ali alimash76

  • Earth
View GitHub Profile
@bradtraversy
bradtraversy / myscript.sh
Last active June 13, 2024 02:51
Basic Shell Scripting
#! /bin/bash
# ECHO COMMAND
# echo Hello World!
# VARIABLES
# Uppercase by convention
# Letters, numbers, underscores
NAME="Bob"
# echo "My name is $NAME"