Guest User

Untitled

a guest
Oct 20th, 2017
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. cd /var/root/Library/Caches/com.saurik.Cydia/SDURLCache
  4. ls >/tmp/cydcache
  5. while read file
  6. do
  7. plutil -convert xml1 $file &>/dev/null
  8. insane=$(echo "`cat $file | grep -i -E insanelyi | sed 's/ //g'`")
  9. if [ ! -e $insane ]; then
  10. echo "$file"
  11. else
  12. echo " " &>/dev/null
  13. fi
  14. done < /tmp/cydcache
Add Comment
Please, Sign In to add comment