Last active
April 10, 2022 06:03
-
-
Save aessing/d04a6c06a1f20fbd112c9a71da84e02c to your computer and use it in GitHub Desktop.
Install Ngork on Linux
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# ============================================================================= | |
# Install Ngrok on Linux | |
# https://ngrok.com/ | |
# ----------------------------------------------------------------------------- | |
# Developer.......: Andre Essing (https://www.andre-essing.de/) | |
# (https://github.com/aessing) | |
# (https://twitter.com/aessing) | |
# (https://www.linkedin.com/in/aessing/) | |
# ----------------------------------------------------------------------------- | |
# THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, | |
# EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED | |
# WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR PURPOSE. | |
# ============================================================================= | |
# Download and extract | |
sudo apt-get install unzip -y | |
wget https://bin.equinox.io/c/4VmDzA7iaHb/ngrok-stable-linux-amd64.zip | |
unzip ngrok-stable-linux-amd64.zip | |
# Move AzCopy | |
sudo rm -f /usr/bin/ngrok | |
sudo mv ./ngrok /usr/bin/ | |
# Clean the kitchen | |
rm -f ngrok-stable-linux-amd64.zip |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment