nomsu/tools/autoformat.nom
Bruce Hill ae4670bd8e Improvements working towards better inline tests. Improved handling of
file spoofing and adding -e command line flag for executing a string.
2018-07-21 14:44:26 -07:00

21 lines
549 B
Plaintext
Executable File

#!/usr/bin/env nomsu -V2.5.4.3
use "core"
use "lib/os.nom"
%args = (command line args)
%inplace = (no)
if (%args.1 is "-i"):
%inplace = (yes)
remove index 1 from %args
for %path in %args:
for file %filename in %path:
unless (%filename matches "%.nom$"): do next %filename
%formatted = ".."
#!/usr/bin/env nomsu -V\(Nomsu version)
\((parse (read file %filename) from %filename) as nomsu)
if %inplace:
write %formatted to file %filename
..else: say %formatted