2018-07-17 23:08:13 -07:00
|
|
|
#!/usr/bin/env Nomsu -V 2.2.4.3
|
2018-07-17 17:53:07 -07:00
|
|
|
use "core"
|
|
|
|
use "compatibility"
|
|
|
|
use "lib/os.nom"
|
|
|
|
|
2018-07-17 23:08:13 -07:00
|
|
|
%args <- (command line args)
|
|
|
|
%inplace <- (no)
|
|
|
|
if (%args.1 is "-i"):
|
|
|
|
%inplace <- (yes)
|
|
|
|
remove index 1 from %args
|
|
|
|
for %path in %args:
|
|
|
|
if (%path is "-i"): %inplace <- (yes)
|
2018-07-17 17:53:07 -07:00
|
|
|
for file %filename in %path:
|
|
|
|
%tree <- (parse (read file %filename) from %filename)
|
|
|
|
%tree <- (%tree upgraded from %tree.version to (Nomsu version))
|
2018-07-17 23:08:13 -07:00
|
|
|
%text <- "#!/usr/bin/env nomsu -V\(Nomsu version)\n\(%tree as nomsu)"
|
|
|
|
if %inplace:
|
|
|
|
write %text to file %filename
|
|
|
|
..else:
|
|
|
|
say %text
|
2018-07-17 17:53:07 -07:00
|
|
|
|