Skip to content

Instantly share code, notes, and snippets.

@perforb
Created May 17, 2012 14:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save perforb/2719493 to your computer and use it in GitHub Desktop.
Save perforb/2719493 to your computer and use it in GitHub Desktop.
Concatenate elisp files in the current directory
# Concatenate elisp files in the current directory
for f in $(ls | grep -E 'el$'); do $(cat $f >> concat.el); $(echo -e "\n" >> concat.el); done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment