Added OSX utility shortcuts
authorMark Rickert <mjar81@gmail.com>
Tue, 9 Apr 2013 13:14:40 +0000 (09:14 -0400)
committerMark Rickert <mjar81@gmail.com>
Tue, 9 Apr 2013 13:14:40 +0000 (09:14 -0400)
.DS_Store cleaner (recursive)
See who's connected to your itunes library
Flush dns cache.

aliases/available/osx.aliases.bash

index e234727..3d82b50 100644 (file)
@@ -23,3 +23,12 @@ fi
 
 # Requires growlnotify, which can be found in the Growl DMG under "Extras"
 alias grnot='growlnotify -s -t Terminal -m "Done"'
+
+# Get rid of those pesky .DS_Store files recursively
+alias dsclean='find . -type f -name .DS_Store -print0 | xargs -0 rm'
+
+# Track who is listening to your iTunes music
+alias whotunes='lsof -r 2 -n -P -F n -c iTunes -a -i TCP@`hostname`:3689'
+
+# Flush your dns cache
+alias flush='dscacheutil -flushcache'