starting docs

This commit is contained in:
Cooper Quintin
2024-02-02 16:31:24 -08:00
parent fd3931f024
commit 0ad60ef8bb
4 changed files with 39 additions and 6 deletions

View File

@@ -1,3 +1,6 @@
//! a simple shell for uploading to the orbic device.
//!
//! It literally just runs bash as UID/GID 0
use std::process::Command;
use std::os::unix::process::CommandExt;
use std::env;
@@ -12,4 +15,4 @@ fn main() {
.uid(0)
.gid(0)
.exec();
}
}