Created
December 21, 2014 16:48
-
-
Save smartlime/dd3d42796e49079496a4 to your computer and use it in GitHub Desktop.
List iOS Apps, Cydia Packages and sources, iOS 8+
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| echo -n "0" | |
| find /User/Containers/Bundle/Application/ -name iTunesMetadata.plist -exec plutil -key itemName {} \; >names.txt | |
| #bundleDisplayName | |
| sort names.txt >names.s.txt | |
| echo -n "1" | |
| find /User/Containers/Bundle/Application/ -name iTunesMetadata.plist -exec plutil -key softwareVersionBundleId {} \; >ids.txt | |
| sort ids.txt >ids.s.txt | |
| echo -n "2" | |
| dpkg --get-selections |sort > packages.s.txt | |
| echo -n "3" | |
| cat /etc/apt/sources.list.d/cydia.list |sort > sources.s.txt | |
| echo -n "4" | |
| echo "." |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment