Read inputs from stdin when applicable

This commit is contained in:
Collin Styles
2022-09-23 23:17:04 -07:00
committed by andy.boot
parent 0a67191054
commit e858f9e976
2 changed files with 20 additions and 5 deletions
+1 -1
View File
@@ -131,5 +131,5 @@ pub fn build_cli() -> Command<'static> {
.long("si")
.help("print sizes in powers of 1000 (e.g., 1.1G)")
)
.arg(Arg::new("inputs").multiple_occurrences(true).default_value("."))
.arg(Arg::new("inputs").multiple_occurrences(true))
}