use super::*;
fn paths(cmd: &str) -> Vec<(String, &'static str)> {
parse_bash_mutations(cmd)
.into_iter()
.map(|m| (m.path, m.verb))
.collect()
}
fn just_paths(cmd: &str) -> Vec<String> {
parse_bash_mutations(cmd)
.into_iter()
.map(|m| m.path)
.collect()
}
mod classes;
mod cwd;
mod heredoc;
mod interp;
mod masking;
mod operands;
mod output_flags;
mod redirects;
mod verbs;