Skip to main content

strat9_kernel/shell/commands/util/
echo.rs

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