Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/system/bin/sh
- ######################################################################
- #Copyright (C) 2023 Kris Occhipinti
- #https://filmsbykris.com
- #This program is free software: you can redistribute it and/or modify
- #it under the terms of the GNU General Public License as published by
- #the Free Software Foundation version 3 of the License.
- #This program is distributed in the hope that it will be useful,
- #but WITHOUT ANY WARRANTY; without even the implied warranty of
- #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- #GNU General Public License for more details.
- #You should have received a copy of the GNU General Public License
- #along with this program. If not, see <http://www.gnu.org/licenses/>.
- ######################################################################
- #view SMS Text Message Notifications
- data="$(dumpsys notification --noredact)"
- sms="$(echo "$data"|grep Bundle -A 10|dos2unix|tr "\n" "|"|
- sed 's/sender_person=/\n/g'|grep 'sender='|
- sed 's/, /\n/g;s/}]|/\n/g'|grep -e "^sender" -A2|
- sed 's/^sender=//g;s/^text=//g'|tr "|" "\n")"
- echo "$sms"|while read l
- do
- #convert time stamp to date format
- if [[ $l == "time="* ]]
- then
- time="$(echo "$l"|cut -d\= -f2)"
- date -d @$time
- else
- echo "$l"
- fi
- done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement