3
So i had the bright idea of making a script that pings my IP to see if its up as i am having some issues with it. so here is the script I made.
while :
do
ping (IP address)
done
now it wont stop, I've tried control x, and z, but it still wont stop? Ive saved it under ~/ .bash_profile, any ideas? //sorry about the space, you know, stack exchange.
2control-c is the break signal. Otherwise, kill the process id of the script. – Paul – 2015-08-23T03:38:45.333
Reboot and login as a different user. If your OS supports it ALT F2 to a second terminal windows. ps -ef |grep <script name> kill -9 <pid of script name> – cybernard – 2015-08-23T17:01:03.457
Should note that while the ping is running, i cant type anything, and i am on the defualt mac Os X terminal. – toasty – 2015-08-23T21:25:30.180