We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4af9150 commit 6f4b01aCopy full SHA for 6f4b01a
programs/shell.c
@@ -10,7 +10,8 @@ void _start() {
10
while(1) {
11
print("Shell> ");
12
scan(input);
13
- if (strcmp(input, "help")) {
+ if (strcmp(input, "")) {}
14
+ else if (strcmp(input, "help")) {
15
print("This is a shell running independently from the OS kernel.\r\n");
16
print("It is capable of more the the kernel's shell.\r\n");
17
print("Type a command to run an executable file.\r\n");
0 commit comments