Skip to main content

strat9_kernel/shell/commands/util/
grep.rs

1use super::*;
2
3/// Search for matching lines in file or piped input.
4pub fn cmd_grep(args: &[String]) -> Result<(), ShellError> {
5    super::cmd_grep_impl(args)
6}