Skip to content

Instantly share code, notes, and snippets.

View juanagu's full-sized avatar
🎯
Focusing

Juani juanagu

🎯
Focusing
  • Staff Software Engineer
  • Argentina
View GitHub Profile
@juanagu
juanagu / myscript.sh
Created December 19, 2020 08:23 — forked from bradtraversy/myscript.sh
Basic Shell Scripting
#! /bin/bash
# ECHO COMMAND
# echo Hello World!
# VARIABLES
# Uppercase by convention
# Letters, numbers, underscores
NAME="Bob"
# echo "My name is $NAME"