home *** CD-ROM | disk | FTP | other *** search
- #!/usr/bin/perl
- ########################################################################################
-
- # Quit Clicker (we're also trying to killing the very first Clicker background app)
- open(PSOUT, "/bin/ps -awwx |");
- while( <PSOUT> ) {
- if( /\s*(\d+)\s+.+SEC\ Helper\.app/ ) {
- print "Killing SEC Helper with PID = $1\n";
- kill 9, $1;
- }
- }
- close(PSOUT);
-
- open(PSOUT, "/bin/ps -awwx |");
- while( <PSOUT> ) {
- if( /\s*(\d+)\s+.+ Sony\ Ericsson\ Clicker\ Helper\.app/ ) {
- print "Killing Sony Ericsson Clicker Helper with PID = $1\n";
- kill 9, $1;
- }
- }
- close(PSOUT);
-
- ########################################################################################
-
- exit(0);
-