Skip to content

Command Reference

Note

This is not the only commands that will be avaliable in August. More are to be added in future. All commands shown below are supported by the syntax and runtime.

Exec

0.1.0

exec(shell_cmd: StringLiteral);

0.4.0

This version introduced ~ short-hand syntax for the exec command. Argument structure is maintained.

~(shell_cmd:StringLiteral);

Set Environment Variable

0.1.0

set_env_var(var_name: StringLiteral, var_contents: StringLiteral);

Make Directory

0.1.0

make_dir(dir_path: StringLiteral);

Make Empty File

0.1.0

make_empty_file(file_path: StringLiteral);

Move File

0.1.1

move_file(source: StringLiteral, destination:, StringLiteral);

Copy File

0.1.1

copy_file(source: StringLiteral, destination: StringLiteral);

Remove Directory

0.1.1

remove_dir(dir_path: StringLiteral);

Remove File

0.1.1

remove_file(file_path: StringLiteral);

0.1.0

print(text: StringLiteral);

0.1.0

print_file(file_path: StringLiteral);