mirror of
https://github.com/paboyle/Grid.git
synced 2025-04-05 19:55:56 +01:00
6 lines
164 B
Bash
Executable File
6 lines
164 B
Bash
Executable File
#!/bin/bash
|
|
for f in $@
|
|
do
|
|
cp $f $f.bak
|
|
emacs -batch -l $HOME/.emacs $f --eval '(progn (indent-region (point-min) (point-max) nil ) (save-buffer) ) '
|
|
done |