14 lines
186 B
Bash
14 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
|