Last active
March 6, 2024 07:49
-
-
Save sahara-ooga/88d79bcd536488c91deeb9d8e47b0c19 to your computer and use it in GitHub Desktop.
scripts for Privacy Manifest files
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
grep -Rn \ | |
--exclude='*.sh' \ | |
-e 'activeInputModes' |
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
grep -Rn \ | |
--exclude='*.sh' \ | |
-e 'volumeAvailableCapacityKey' \ | |
-e 'volumeAvailableCapacityForImportantUsageKey' \ | |
-e 'volumeAvailableCapacityForOpportunisticUsageKey' \ | |
-e 'volumeTotalCapacityKey' \ | |
-e 'systemFreeSize' \ | |
-e 'systemSize' \ | |
-e 'statfs' \ | |
-e 'statvfs' \ | |
-e 'fstatfs' \ | |
-e 'fstatvfs' \ | |
-e 'getattrlist' \ | |
-e 'fgetattrlist' \ | |
-e 'getattrlistat' |
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
grep -Rn \ | |
--exclude='*.sh' \ | |
-e 'creationDate' \ | |
-e 'modificationDate' \ | |
-e 'fileModificationDate' \ | |
-e 'contentModificationDateKey' \ | |
-e 'creationDateKey' \ | |
-e 'getattrlist' \ | |
-e 'getattrlistbulk' \ | |
-e 'fgetattrlist' \ | |
-e 'stat' \ | |
-e 'fstat' \ | |
-e 'fstatat' \ | |
-e 'lstat' \ | |
-e 'getattrlistat' \ | |
| grep -v 'static' \ | |
| grep -v 'status' \ | |
| grep -v 'state' |
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
grep -Rn \ | |
--exclude='*.sh' \ | |
-e 'systemUptime' \ | |
-e 'mach_absolute_time' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment