eaf 330 B

123456789101112
  1. #!/bin/sh
  2. # my-init.org [[id:7c27f949-fae8-4343-b528-f7d539a8e9ec][add-file-to-current-session]]
  3. programname=`basename $0`
  4. if [ $# -eq 0 ] ;
  5. then
  6. echo "Usage ${programname} files*"
  7. exit
  8. fi
  9. emacsclient --alternate-editor="" -n $@
  10. # End my-init.org [[id:7c27f949-fae8-4343-b528-f7d539a8e9ec][add-file-to-current-session]]