Implemented an abstraction for extracting flags from builtins

This commit is contained in:
2025-03-22 20:10:47 -04:00
parent 26fc4669f0
commit 8fffe1cd71
18 changed files with 567 additions and 17 deletions

View File

@@ -10,10 +10,12 @@ pub mod jobs;
pub mod signal;
#[cfg(test)]
pub mod tests;
pub mod getopt;
use std::collections::HashSet;
use expand::expand_aliases;
use getopt::get_opts;
use libsh::error::ShResult;
use parse::{execute::Dispatcher, lex::{LexFlags, LexStream, Tk}, Ast, ParseStream, ParsedSrc};
use procio::IoFrame;