Simple embedded shell with runtime pluggable commands.

Dependents:   DataBus2018

Implements a simple unix-like shell for embedded systems with a pluggable command architecture.

Revision:
19:bf5f5ea4e762
Parent:
18:2b5ed529ab37
Child:
20:53f0b5dc30f9
--- a/SimpleShell.h	Fri Dec 21 20:02:56 2018 +0000
+++ b/SimpleShell.h	Sat Dec 22 20:27:54 2018 +0000
@@ -79,6 +79,12 @@
 
     /// Built-in shell command to list files in directory
     void ls(int argc, char **argv);
+    
+    /// Built-in shell command to remove a file
+    void rm(int argc, char **argv);
+    
+    /// Built-in shell command to create a file
+    void touch(int argc, char **argv);
 
     /// Built-in shell command to display contents of file
     void cat(int argc, char **argv);