Skip to content

Instantly share code, notes, and snippets.

View lindleywhite's full-sized avatar

Lindley White lindleywhite

  • Hashicorp
  • Salt Lake City
View GitHub Profile
@antoniomika
antoniomika / syncssh
Created February 16, 2022 20:30
syncssh
#!/bin/bash
starttmux() {
if [ -z "$HOSTS" ]; then
echo -n "Please provide of list of hosts separated by spaces [ENTER]: "
read HOSTS
fi
local hosts=( $HOSTS )