33 lines
979 B
Plaintext
33 lines
979 B
Plaintext
#!/usr/bin/env Nomsu -V2.4.4.3
|
|
use "core"
|
|
use "compatibility"
|
|
use "lib/os.nom"
|
|
|
|
%args = (command line args)
|
|
%inplace = (no)
|
|
if (%args.1 is "-i"):
|
|
%inplace = (yes)
|
|
remove index 1 from %args
|
|
if (%args.1 is "-t"):
|
|
use "lib/consolecolor.nom"
|
|
%test = (yes)
|
|
remove index 1 from %args
|
|
for %path in %args:
|
|
if (%path is "-i"): %inplace = (yes)
|
|
for file %filename in %path:
|
|
%tree = (parse (read file %filename) from %filename)
|
|
%uptree = (%tree upgraded from %tree.version to (Nomsu version))
|
|
%text = "#!/usr/bin/env nomsu -V\(Nomsu version)\n\(%uptree as nomsu)"
|
|
if:
|
|
%inplace:
|
|
say "Upgraded \%filename"
|
|
write %text to file %filename
|
|
%test:
|
|
if (%uptree == %tree):
|
|
say (dim "\%filename will not be changed")
|
|
..else:
|
|
say (bright "\%filename will be changed")
|
|
else:
|
|
say %text
|
|
|