Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
bahua129046y@irene
Because it brings even the most capable of computers to its knees.
I made a mistake last night, closing the lid of my laptop when I left the office, instead of leaving it powered on but locked, so the scan could take place at its scheduled time of 8pm. So I will kill it until next monday. -
while :; do ps -ef | awk '/[s]ymantec/ {print $2}' | while read pid ; do kill -9 ${pid} ; done; sleep 1; done
-
bahua129046y@netikras
I was going to comment on the lack of sleep in your previous edit, but I thought it would be nitpicky. -
bahua129046y
#!/bin/bash
while :; do
ps -ef | grep -iq [s]ymantec && for i in `ps -ef | grep -i [s]ymantec | awk '{ print $2 }'`; do sudo kill -9 $i; done
sleep 1
done
random
no you may not do a scan during the workday