1 2 3 4 5 6 7 8 9 10 11
use crate::structs::Gitnu; use std::collections::LinkedList; use std::process::Command; pub fn xargs( mut _args: LinkedList<String>, _gitnu: &mut Gitnu, ) -> Command { let cmd = Command::new("ls"); cmd }