Skip to content

Instantly share code, notes, and snippets.

@jessearmand
Forked from nuthatch/symbolicate-damn-you
Created March 18, 2011 16:03
Show Gist options
  • Save jessearmand/876331 to your computer and use it in GitHub Desktop.
Save jessearmand/876331 to your computer and use it in GitHub Desktop.
#!/bin/bash
# run this in ~/Library/Logs/CrashReporter/MobileDevice
pth=${0%*/*}
cd "$pth"
#echo "$@"
if [ -z "$1" ]; then
find . -name "*.crash" | while read file;
do
echo "converting $file"
symbolicatecrash "$file" 2>/dev/null 1>"$file".txt
done
exit
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment