Finally hook up the mkdir code to a syscall.

Added a /bin/mkdir that makes directories. How very neat :^)
There are various limitations because of missing functionality.
This commit is contained in:
Andreas Kling 2018-11-18 14:57:41 +01:00
commit de4604ac95
Notes: sideshowbarker 2024-07-19 16:09:50 +09:00
26 changed files with 238 additions and 132 deletions

21
Userland/mkdir.cpp Normal file
View file

@ -0,0 +1,21 @@
#include <stdio.h>
#include <unistd.h>
#include <errno.h>
#include <string.h>
#include <stdlib.h>
#include <assert.h>
#include <sys/stat.h>
int main(int argc, char** argv)
{
if (argc != 2) {
printf("usage: mkdir <path>\n");
return 1;
}
int rc = mkdir(argv[1], 0755);
if (rc < 0) {
perror("mkdir");
return 1;
}
return 0;
}