Advertisement
metalx1000

ADB Android get notifications

May 23rd, 2020
2,372
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.22 KB | None | 0 0
  1. #ADB Android get notifications
  2. adb shell dumpsys notification|grep "tickerText"|cut -d\= -f2|grep -v '^null'
  3.  
  4. #or maybe better
  5. adb shell dumpsys notification|grep 'tickerText'|sed 's/tickerText=//g'|grep -v '^      null'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement