blob: 5976c92b64769313e5327f1fada30a3f4369dd42 (
plain)
1
2
3
4
5
6
7
|
#!/bin/bash
location=$HOME/.emacs.d/
echo "Deleting emacs lisp compiled files (.eln and .elc) from $location..."
find $location -type f \( -name "*.eln" -o -name "*.elc" \) -exec rm -f {} +
echo "Done."
|