1use super::*; 2 3/// Unmount filesystems. 4pub fn cmd_umount(args: &[String]) -> Result<(), ShellError> { 5 super::cmd_umount_impl(args) 6}