Posts

Post not yet marked as solved
16 Replies
0 Views
run this command in terminal each boot while :; do  PROCESS=nsurlsessiond number=$(ps aux | grep -v grep | grep -ci $PROCESS) if [ $number -gt 0 ]   then echo Your_password | sudo -S pkill -9 pgrep $PROCESS  fi sleep 1; done