melawy-archiso-config/Melawy-Linux-NetInstall/airootfs/usr/local/bin/connection-checker

9 lines
100 B
Plaintext
Raw Normal View History

2024-10-07 12:54:30 +05:00
#!/usr/bin/env bash
ping -c 1 1.1.1.1 > /dev/null
if [ $? -eq 0 ]; then
true
else
false
fi