Skip to content

Instantly share code, notes, and snippets.

View mike-anderson's full-sized avatar

Mike Anderson mike-anderson

  • Victoria, British Columbia, Canada
  • 23:39 (UTC -07:00)
View GitHub Profile
@mike-anderson
mike-anderson / install_go.sh
Last active November 20, 2023 04:26
stratux barebones debian installation
#!/bin/bash
set -exo pipefail
#install go
cd /root
rm -rf go
rm -rf go_path
find ./ -name "go*.tar.gz" -delete
if [ "$GOROOT" != "/root/go" ]; then
echo "export PATH=/root/go/bin:\${PATH}" >> .bashrc