Skip to main content

strat9_kernel/shell/commands/vfs/
touch.rs

1use super::*;
2
3/// Create empty file.
4pub fn cmd_touch(args: &[String]) -> Result<(), ShellError> {
5    super::cmd_touch_impl(args)
6}