From 0d4c79697520c7406a97dcd681b2e93c07e4c60c Mon Sep 17 00:00:00 2001
From: lilly
Date: Sun, 19 Jul 2026 21:11:34 +0200
Subject: [PATCH] add help text concerning show-locks command in ssh-cli
---
ssh-cli/src/main.rs | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
diff --git a/ssh-cli/src/main.rs b/ssh-cli/src/main.rs
index b76b2a0..2c044ef 100644
--- a/ssh-cli/src/main.rs
+++ b/ssh-cli/src/main.rs
@@ -43,7 +43,11 @@ async fn main() -> eyre::Result<()> {
println!();
println!(" help -> The help command prints this message. Hello 👋");
println!("");
- println!(" lock [wait|nowait] -> Locks the door identified with .");
+ println!(
+ " show-locks -> Display a list of currently connected locks along with their status."
+ );
+ println!("");
+ println!(" lock [wait|nowait] -> Locks the door identified with .");
println!(
" Also takes an additional parameter of \"wait\" or \"nowait\"which dictates"
);
@@ -51,7 +55,7 @@ async fn main() -> eyre::Result<()> {
println!(" it waits until the lock status changes to open.");
println!(" Defaults to \"wait\" if not specified.");
println!();
- println!(" unlock [wait|nowait] -> Unlocks the door identified with .");
+ println!(" unlock [wait|nowait] -> Unlocks the lock identified with .");
println!(
" Also takes an additional parameter of \"wait\" or \"nowait\"which dictates"
);