<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -61,8 +61,8 @@ if [ -f ~/.git_path ];then
 fi
 
 if [ -f /usr/bin/mate ];then
-  alias e='mate'
   export EDITOR=&quot;mate -w&quot;
+  alias e='mate'
 elif [ -f /usr/bin/vim ];then
   export EDITOR=vim
   alias vi='vim'
@@ -78,7 +78,11 @@ fi
 function pps() { ps aux | grep &quot;$@&quot; | grep -v 'grep'; }
 
 # easy access to find's size search
-function findBigfiles() { find &quot;$@&quot; -size +10000k -exec du -h {} \; | sort -nr; }
+function find_big_files() { find &quot;${1-.}&quot; -size +10000k -exec du -h {} \; | sort -nr; }
+
+# managing broken symlinks
+function find_broken_symlinks() { find -x -L &quot;${1-.}&quot; -type l; }
+function rm_broken_symlinks() { find -x -L &quot;${1-.}&quot; -type l -exec rm {} +; }
 
 # add a few shortcut functions to copy/move and change directory at same time
 function cpcd() { cp $1 $2 &amp;&amp; cd $2; }
@@ -100,7 +104,7 @@ echo &quot;[&quot;${ref#refs/heads/}&quot;]&quot;
 }
 
 # quick access to domain availability check
-function domainavailable() {
+function domain_available() {
   if whois $1 | grep &quot;No match for&quot; &gt;&amp;/dev/null; then
     echo &quot;$1 is available&quot;;
     return 0;
@@ -123,4 +127,4 @@ function cd () {
   else
     builtin cd
   fi
-}
\ No newline at end of file
+}</diff>
      <filename>bashrc</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>70031a4db84adbf700af1882d61b5d7b0ede8c24</id>
    </parent>
  </parents>
  <author>
    <name>Jerod Santo</name>
    <email>jerod.santo@gmail.com</email>
  </author>
  <url>http://github.com/sant0sk1/dotfiles/commit/8011e646eca3313de43ce10a33b6d125f92513e2</url>
  <id>8011e646eca3313de43ce10a33b6d125f92513e2</id>
  <committed-date>2009-11-05T07:30:52-08:00</committed-date>
  <authored-date>2009-11-05T07:30:52-08:00</authored-date>
  <message>added a few functions for managing broken symlinks</message>
  <tree>8c658ca92217831c894a977df1b63918918dda6b</tree>
  <committer>
    <name>Jerod Santo</name>
    <email>jerod.santo@gmail.com</email>
  </committer>
</commit>
