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 | |
# Get the list of exit nodes, skipping the first two lines (header) | |
exit_nodes=$(sudo tailscale exit-node list | tail -n +3 | grep -E '^\s*[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+\s+') | |
# Add a "Disable exit node" option | |
echo -e "Disable exit node" > tmp_exit_nodes | |
echo "$exit_nodes" >> tmp_exit_nodes | |
# Use fzf to select an exit node, formatting as 'Country - City' and previewing IP and Hostname |