android - Why busybox grep stop working? -
from first time installed busybox pro version.apk seems working.
until run or without "su" command below:
busybox grep -ri "podnet" /
and terminal stop working. not hang or nor not responding either.
but wonder why did busybox grep seems not working, doesn't give output @ all. cursor seems stop @ beginning of newline that.
any clue?
using -r (recursive) option , providing file path root (/) have asked grep search files on mounted file systems pattern "podnet". if have networked drives, huge search.
you should first consider providing more specific path root (/). option long running commands run command in background , redirect output file.
for example:
$ grep -ri "podnet" /home >/tmp/podnet.lst &
finally, if enter linux command , wish stop it, have 2 options. enter cntl-c abort command, or cntl-z suspend it.
Comments
Post a Comment