26 lines
622 B
Markdown
26 lines
622 B
Markdown
# erlang-terms-validate
|
|
|
|
A helper script to syntactically validate an Erlang terms config file
|
|
|
|
# Setup
|
|
|
|
Get started like so:
|
|
|
|
1. Clone repo into arbitrary path `<repo>`
|
|
|
|
1. Make `erlang-terms-validate.escript` executable
|
|
|
|
```
|
|
chmod +x <repo>/erlang-terms-validate.escript
|
|
```
|
|
|
|
1. Symlink to file, for example
|
|
|
|
```
|
|
sudo ln -s <repo>/erlang-terms-validate.escript /usr/local/bin/erlang-terms-validate
|
|
```
|
|
|
|
# Credits
|
|
|
|
[Stack Overflow user Jesse Gumm](https://stackoverflow.com/users/318025/chops) aka `chops` in November 2012 post [stackoverflow.com/a/13424207](https://stackoverflow.com/a/13424207)
|