Tag Archives: emacs

Open all files in separate emacs windows

How to open everything in a directory with emacs, each in their own window: find . -type f -exec $SHELL -c ‘”$0″ “$@” &’ emacs {} \; Many thanks to ephemient at StackOverflow for the inspiration: http://stackoverflow.com/questions/853451/can-the-find-commands-exec-feature-start-a-program-in-the-background

Posted in coding | Tagged , , , | Comments Off on Open all files in separate emacs windows