1use super::*; 2 3/// Show filesystem usage. 4pub fn cmd_df(args: &[String]) -> Result<(), ShellError> { 5 super::cmd_df_impl(args) 6}