You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/bash
|
|
|
|
HOSTNAME=$(grep -A1 'desktop' ~/.ssh/config | tail -n1 | xargs | cut -d" " -f2)
|
|
nc -z -w3 "$HOSTNAME" 2424
|
|
|
|
[ $? == 0 ] && exit 0 || exit 1
|