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

9 lines
100 B
Plaintext
Raw Normal View History

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