1use std::env; 2 3pub fn all_args_string() -> String { 4 let mut args: Vec<String> = env::args().collect(); 5 args.remove(0); 6 args.join(" ") 7}