ctsh! runs commands at compile time and (optionally) captures their output.
use ctsh;
let result = ctsh!;
assert_eq!;
ctsh! runs commands at compile time and (optionally) captures their output.
use ctsh::ctsh;
let result = ctsh!("echo" "Hello" "World" as str);
assert_eq!(result.trim(), "Hello World");