Browse Source

Added script to pull up dired

Samuel W. Flint 8 years ago
parent
commit
9a263647d4
1 changed files with 11 additions and 0 deletions
  1. 11 0
      dired

+ 11 - 0
dired

@@ -0,0 +1,11 @@
+#!/bin/zsh -f
+
+programname=`basename $0`
+
+if [ $# -eq 0 ] ;
+then
+    echo "Usage ${programname} directory"
+    exit
+fi
+
+emacsclient -n --eval "(dired \"${1}\")"