From 6fdc52b32077e276b1303dc0ed35ae0e4a56b685 Mon Sep 17 00:00:00 2001 From: Gregory Ballantine Date: Wed, 17 Aug 2022 18:01:14 -0400 Subject: [PATCH] Updated the network bandwidth arguments to be more consistent with the disk command arguments --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 451601b..7ead235 100644 --- a/src/main.rs +++ b/src/main.rs @@ -113,7 +113,7 @@ enum NetCommands { Bandwidth { #[clap(short = 'd', long, default_value_t = String::from("https://www.bitgoblin.tech/hardware-tests/export-01.mp4"))] download: String, - #[clap(short = 'o', long, default_value_t = String::from("./tempfile"))] + #[clap(short = 't', long, default_value_t = String::from("/tmp/bw-test.tmp"))] output: String, }, }