1use super::*; 2 3/// Echo arguments to shell output. 4pub fn cmd_echo(args: &[String]) -> Result<(), ShellError> { 5 super::cmd_echo_impl(args) 6}