tageditor/resources/scripts/renamefiles/format.sh
Martchus 596d67387f Improve renaming utility
* Improve UI
* Add simple example script (the current example script grew quite big and
  is likely not good to get started)
* Add script to format example scripts
2020-11-25 18:05:23 +01:00

7 lines
94 B
Bash
Executable File

#!/bin/bash
set -e
for js_file in *.js; do
js-beautify --jslint-happy -r "$js_file"
done