Sort your crashlogs with Hazel

Filed under: ,

I’ve been on a bit of a Hazel kick lately. I wrote a short shell script that will sort my Crash Logs.

#!/bin/sh 

### Get the name of the app 
APP=`/bin/echo $1 | /usr/bin/sed 's#_.*##g'` 

### make a directory 
/bin/mkdir -p "$APP" 

### move the log into the directory 
/bin/mv -n "$1" "$APP" 

### done! 
exit 0 

Add this rule to the folder ~/Library/Logs/DiagnosticReports. The rules above tell Hazel to only run on crash logs older than today, in case you need to do anything with it such as send it to the developer.

UPDATE: Note that the developer of Hazel left a comment below showing how to do this without a script.

TUAWSort your crashlogs with Hazel originally appeared on The Unofficial Apple Weblog (TUAW) on Mon, 24 May 2010 09:00:00 EST. Please see our terms for use of feeds.

Read | Permalink | Email this | Comments