#!/bin/bash ### tailsclae install printf "Do you want to install Tailscale now? [Y/n]: \n" read ansTail if [[ "$ansTail" =~ ("y"|"Y") || -z $ansTail ]]; then curl -fsSL https://tailscale.com/install.sh | sh if [[ "$sshBlockRange" =~ ("y"|"Y") || -z $sshBlockRange ]]; then tailscale up --ssh else tailscale up fi fi