Skip to content

Instantly share code, notes, and snippets.

@giseongeom
Created February 22, 2022 13:25
Show Gist options
  • Save giseongeom/134e1d20b9c95a19ae854beae8ecb9d3 to your computer and use it in GitHub Desktop.
Save giseongeom/134e1d20b9c95a19ae854beae8ecb9d3 to your computer and use it in GitHub Desktop.
Install curl/tcping on Alpine Linux
apk --no-cache add curl
curl -L -Ss "https://github.com/cloverstd/tcping/releases/download/v0.1.1/tcping-linux-amd64-v0.1.1.tar.gz" -o "/tmp/tcping-linux.tgz"
tar zxf /tmp/tcping-linux.tgz -C /usr/local/bin && cd /usr/local/bin/ && chown root.root tcping && chmod 755 tcping
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment