Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'Stop useless log entries from newer Adobe programs' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
Stop useless log entries from newer Adobe programs
Authored by: HintGuy2006 on Dec 17, '08 11:51:04AM

I get a syntax error when trying to make a script of:
"Unknown token can't go here."

#! /bin/sh
# kills Adobe FNPLicensing Service to prevent log clutter
# ron@doofus, 14 Dec 2008

sleep 5
pid=`ps -axc | grep " FNPLicensingServ" | awk '{print $1}'`
[ $pid ] && kill $pid
exit 0



[ Reply to This | # ]
Stop useless log entries from newer Adobe programs
Authored by: rflorence on Dec 18, '08 08:35:59AM

Not sure what you mean by "make a script of". You just copy the shell script as /usr/sbin/killFNPL, then follow the directions to change the permissions to executable. It is not an Applescript.



[ Reply to This | # ]