Implemented 'rm' and 'rmdir' commands

This commit is contained in:
Jakob Friedl
2025-07-08 21:09:50 +02:00
parent 92da6f1288
commit 4a5f3baaa4
5 changed files with 111 additions and 0 deletions

View File

@@ -18,6 +18,8 @@ type
GetWorkingDirectory = "pwd"
SetWorkingDirectory = "cd"
ListDirectory = "ls"
RemoveFile = "rm"
RemoveDirectory = "rmdir"
TaskStatus* = enum
Completed = "completed"