Skip to content

Instantly share code, notes, and snippets.

View scottnunemacher's full-sized avatar
🏖️
🎵 Knee deep in the water somewhere... 🎵

Scott Nunemacher scottnunemacher

🏖️
🎵 Knee deep in the water somewhere... 🎵
View GitHub Profile
@scottnunemacher
scottnunemacher / docker-help.md
Last active December 21, 2018 02:53 — forked from bradtraversy/docker-help.md
Docker Commands, Help & Tips

Docker Commands, Help & Tips

Show commands & management commands

$ docker

Docker version info

@scottnunemacher
scottnunemacher / myscript.sh
Created October 6, 2021 12:20 — 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"