Squash commits for public release

This commit is contained in:
2025-02-12 09:54:05 -05:00
commit 7118adc514
1108 changed files with 80873 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
APPS += RM
RM_NAME = rm
RM_LIBS = c
RM_INSTALL_PATH = bin/

View File

@@ -0,0 +1,8 @@
import("//build/userland/TEMPLATE.gni")
xOS_executable("rm") {
install_path = "bin/"
sources = [ "main.c" ]
configs = [ "//build/userland:userland_flags" ]
deplibs = [ "libc" ]
}

View File

@@ -0,0 +1,18 @@
#include <unistd.h>
int main(int argc, char** argv)
{
if (argc < 2) {
write(1, "Usage: rm files...\n", 21);
return 0;
}
for (int i = 1; i < argc; i++) {
if (unlink(argv[i]) < 0) {
write(1, "rm: failed to delete\n", 21);
break;
}
}
return 0;
}