2018-07-20 20:27:15 -07:00
|
|
|
#!/usr/bin/env nomsu -V2.5.4.3
|
2018-07-17 17:53:07 -07:00
|
|
|
use "lib/os.nom"
|
2018-07-20 20:27:15 -07:00
|
|
|
|
2018-07-19 20:41:31 -07:00
|
|
|
%args = (command line args)
|
|
|
|
%inplace = (no)
|
|
|
|
if (%args.1 is "-i"):
|
|
|
|
%inplace = (yes)
|
|
|
|
remove index 1 from %args
|
|
|
|
|
|
|
|
for %path in %args:
|
2018-07-17 17:53:07 -07:00
|
|
|
for file %filename in %path:
|
2018-07-21 14:43:49 -07:00
|
|
|
unless (%filename matches "%.nom$"): do next %filename
|
2018-07-19 20:41:31 -07:00
|
|
|
%formatted = ".."
|
|
|
|
#!/usr/bin/env nomsu -V\(Nomsu version)
|
|
|
|
\((parse (read file %filename) from %filename) as nomsu)
|
|
|
|
|
2018-07-20 20:27:15 -07:00
|
|
|
if %inplace:
|
|
|
|
write %formatted to file %filename
|
2018-07-21 14:43:49 -07:00
|
|
|
..else: say %formatted
|