~Fred AsatumiburyndsFeb 26, 2018, 6:15 PM107 PostsHere's what works for me under UbuntuSub Initialize On Error Goto CatchAll Dim retVal, ip$ ip = {xx.xx.xx.xx} 'Your IP goes here retVal = Shell({gnome-terminal -e '/bin/ping -c 5 } & ip & {'}, 1) Msgbox "Shell returned: " & retVal Exit Sub CatchAll: Msgbox Err() & " - " & Error$() & ", line " & Erl() Exit Sub End Sub What did the trick was opening a terminal (gnome-terminal in my particular example, but could be any other as well) and let that terminal execute the script. I guess similar approaches would work under RHEL and OSX as well. Can't test, however, since I have no suitable boxes at my fingertips.
~Vera EkwechekingsFeb 28, 2018, 6:20 PM2 PostsThanks for the help!Thanks Jochen! That worked great for RHEL! Joe