Skip to content

Instantly share code, notes, and snippets.

View anthonybouton's full-sized avatar

Anthony anthonybouton

  • Kortrijk, Belgium
View GitHub Profile
@anthonybouton
anthonybouton / bash.sh
Last active August 12, 2024 14:05
Auto refreshing SSM Forward host script (x86)
#!/bin/bash
set -e
# Detect the system architecture
arch=$(uname -m)
# Set ARCH variable based on the detected architecture
if [ "$arch" == "x86_64" ]; then
ARCH="linux_64bit"
elif [ "$arch" == "aarch64" ]; then