2019-08-19 07:16:39 +02:00
|
|
|
use crate::commands::WholeStreamCommand;
|
2019-05-10 18:59:12 +02:00
|
|
|
use crate::errors::ShellError;
|
2019-05-13 19:30:51 +02:00
|
|
|
use crate::prelude::*;
|
2019-05-10 18:59:12 +02:00
|
|
|
|
2019-08-19 07:16:39 +02:00
|
|
|
pub struct LS;
|
|
|
|
|
|
|
|
impl WholeStreamCommand for LS {
|
|
|
|
fn name(&self) -> &str {
|
|
|
|
"ls"
|
|
|
|
}
|
|
|
|
|
|
|
|
fn signature(&self) -> Signature {
|
2019-09-11 09:53:05 +02:00
|
|
|
Signature::build("ls").optional("path", SyntaxType::Pattern)
|
2019-08-19 07:16:39 +02:00
|
|
|
}
|
2019-08-30 00:52:32 +02:00
|
|
|
|
|
|
|
fn usage(&self) -> &str {
|
|
|
|
"View the contents of the current or given path."
|
|
|
|
}
|
|
|
|
|
|
|
|
fn run(
|
|
|
|
&self,
|
|
|
|
args: CommandArgs,
|
|
|
|
registry: &CommandRegistry,
|
|
|
|
) -> Result<OutputStream, ShellError> {
|
2019-09-11 09:53:05 +02:00
|
|
|
ls(args, registry)
|
2019-08-30 00:52:32 +02:00
|
|
|
}
|
2019-08-19 07:16:39 +02:00
|
|
|
}
|
|
|
|
|
2019-09-11 09:53:05 +02:00
|
|
|
fn ls(args: CommandArgs, registry: &CommandRegistry) -> Result<OutputStream, ShellError> {
|
|
|
|
let shell_manager = args.shell_manager.clone();
|
|
|
|
let args = args.evaluate_once(registry)?;
|
|
|
|
shell_manager.ls(args)
|
2019-05-10 18:59:12 +02:00
|
|
|
}
|