diff options
Diffstat (limited to 'Source/Applications/Shell/Shell.ns.cpp')
-rw-r--r-- | Source/Applications/Shell/Shell.ns.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/Applications/Shell/Shell.ns.cpp b/Source/Applications/Shell/Shell.ns.cpp index 4afc6b7..1f8acae 100644 --- a/Source/Applications/Shell/Shell.ns.cpp +++ b/Source/Applications/Shell/Shell.ns.cpp @@ -14,10 +14,11 @@ u32int run() { {"ls", ls}, {"cd", cd}, {"pwd", pwd}, + {"rm", rm}, {"", 0} }; - cwd = FSNode::getCwd(); + cwd = FS::cwdNode(); while (1) { outvt << "{" << cwd.getName() << "}: "; String s = invt.readLine(); |