ping - How to check if my device (iOS) have internet connection via bash -
in linux using line of code easy:
if ping -c 4 google.com ; echo ok ; else echo ko ; fi
but in ios, ping
command not available. workaround? or can access system plist file in ios connectivity status?
Comments
Post a Comment