Created
May 17, 2012 14:59
-
-
Save perforb/2719493 to your computer and use it in GitHub Desktop.
Concatenate elisp files in the current directory
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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