Add script to ping desktop PC

main
Ian Mancini 3 years ago
parent a5d51247ae
commit c92555298d

@ -0,0 +1,6 @@
#!/bin/bash
HOSTNAME=$(grep -A1 'desktop' ~/.ssh/config | tail -n1 | xargs | cut -d" " -f2)
nc -z -w3 "$HOSTNAME" 2424
[ $? == 0 ] && exit 0 || exit 1
Loading…
Cancel
Save