Files
RockOS/programs/rocksh/main.c

69 lines
1.2 KiB
C
Raw Normal View History

#include "syscall.h"
#include <unistd.h>
#include <stdio.h>
2026-07-12 04:37:46 -05:00
#include <string.h>
const char* shell_prompt = "rocksh> ";
2026-07-12 04:37:46 -05:00
char buf[256];
size_t buf_offset = 0;
char path[256];
const char* bin_dir = "/bin/";
2026-07-12 04:37:46 -05:00
void parse_cmd() {
if (strcmp(buf, "exit") == 0) {
printf("bye!\n");
exit(0);
}
if (strcmp(buf, "motd") == 0) {
printf("rockos is the best!\n");
return;
2026-07-12 04:37:46 -05:00
}
// need a strcat
char* dst = path;
strcpy(dst, bin_dir);
dst = path + strlen(bin_dir);
strcpy(dst, buf);
int pid = fork();
if (pid == 0) {
if (!exec(path)) {
return;
}
}
int status;
waitpid(pid, &status);
printf("process exited with status %d\n", status);
2026-07-12 04:37:46 -05:00
}
void reset() {
memset(buf, 0, 256);
buf_offset = 0;
}
int main(int argc, char *argv[]) {
(void)argc;
(void)argv;
printf(shell_prompt);
2026-07-12 04:37:46 -05:00
while (1) {
char c;
int rd = read(0, &c, 1);
if (rd > 0) {
if (c == '\n') {
parse_cmd();
reset();
printf(shell_prompt);
continue;
}
buf[buf_offset++] = c;
}
}
return 0;
}