dotfiles/dot_tmux/plugins/tmux-current-pane-hostname/scripts/executable_port.sh
2023-11-13 13:48:17 +01:00

13 lines
186 B
Bash

#!/usr/bin/env bash
CURRENT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
source $CURRENT_DIR/shared.sh
main() {
if ssh_connected; then
get_info "port"
fi
}
main