Created
March 14, 2018 08:40
-
-
Save 5SMNOONMS5/4a0cf0d6dbcd3dc328063b11062a624e to your computer and use it in GitHub Desktop.
gunzip .xcactivitylog
This file contains 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
# Thanks to here https://stackoverflow.com/questions/13861658/is-it-possible-to-search-though-all-xcodes-logs | |
EXT=".xcactivitylog" | |
for LOG in *.xcactivitylog; do | |
NAME=`basename $LOG $EXT` | |
gunzip -c -S $EXT "${NAME}${EXT}" > "${NAME}.log" | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment