Skip to content

Instantly share code, notes, and snippets.

@SKalt
Created April 30, 2020 00:55
Show Gist options
  • Save SKalt/ab74a7cd7f72b31a3ec0ef2db92cb53e to your computer and use it in GitHub Desktop.
Save SKalt/ab74a7cd7f72b31a3ec0ef2db92cb53e to your computer and use it in GitHub Desktop.
install republic anywhere
#! /usr/bin/env bash
# copied from https://help.republicwireless.com/hc/en-us/articles/115009437747-How-to-Install-Republic-Anywhere-on-Linux
# written here in pastable form
function install_republic_anywhere() {
sudo sh -c 'echo "deb [arch=amd64] https://s3.amazonaws.com/files.republicwireless.com/public/apps/anywhere/debian main main" > /etc/apt/sources.list.d/republicanywhere.list' &&
wget -O - https://s3.amazonaws.com/files.republicwireless.com/public/apps/anywhere/debian/key/public | sudo apt-key add - &&
sudo apt-get update &&
sudo apt-get install republicanywhere
}
@SKalt
Copy link
Author

SKalt commented Apr 30, 2020

aaand it has problems with ubuntu 20.04. ok.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment