summaryrefslogtreecommitdiffstats
path: root/ping
blob: 844b70e450ce1870d16cd3c4e8cc5641f6f03b30 (plain) (blame)
1
2
3
4
5
#!/data/data/com.termux/files/usr/bin/bash -e
read -r -e -p 'Host: ' -i 8.8.8.8 host
set -x
ping -c 4 "$host"
exit 125