Created
April 30, 2019 16:01
-
-
Save uberbruns/f23c1f66fdcf20b9764a50c1a823cb01 to your computer and use it in GitHub Desktop.
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
tmpfile=$(mktemp) | |
prjfile=project.pbxproj | |
plutil -convert xml1 ${prjfile} -o - \ | |
| plutil -replace "objects.071AC71E45E94004142F8190.includeInIndex" -string 2 -o - - \ | |
| pl \ | |
> ${tmpfile} | |
cat ${tmpfile} > ${prjfile} | |
rm -f ${tmpfile} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment