View Single Post
Old 12-09-2010, 01:18 PM   #32
afv011
Captain Penguin
afv011 ought to be getting tired of karma fortunes by now.afv011 ought to be getting tired of karma fortunes by now.afv011 ought to be getting tired of karma fortunes by now.afv011 ought to be getting tired of karma fortunes by now.afv011 ought to be getting tired of karma fortunes by now.afv011 ought to be getting tired of karma fortunes by now.afv011 ought to be getting tired of karma fortunes by now.afv011 ought to be getting tired of karma fortunes by now.afv011 ought to be getting tired of karma fortunes by now.afv011 ought to be getting tired of karma fortunes by now.afv011 ought to be getting tired of karma fortunes by now.
 
afv011's Avatar
 
Posts: 2,947
Karma: 2077653593
Join Date: May 2009
Location: Vancouver, BC
Device: Kobo Libra 2, Nook Glowlight
Quote:
Originally Posted by DuncanWatson View Post
I am not sure if awk is in the command set but

Code:
ps | grep com.bn.nook.applauncher | awk '{print $2}' | xargs kill
would do the trick if it has the commands.
Nice try. The shell in the nookColor is rather limited, so you have to make use of your PC's shell; it would be:

Code:
adb shell ps | grep applauncher | awk '{print $2}' | xargs adb shell kill
afv011 is offline   Reply With Quote