Skip to content

Instantly share code, notes, and snippets.

#!/bin/bash -ex
if (! which sshd) ; then
sudo apt-get update -y
sudo apt-get install -y openssh-server
sudo mkdir /run/sshd
sudo /usr/sbin/sshd -d &
fi
if [[ -z "$NGROK_TOKEN" ]]; then