add help text concerning show-locks command in ssh-cli
All checks were successful
Build Container / Build Container (push) Successful in 4m18s

This commit is contained in:
lilly 2026-07-19 21:11:34 +02:00
commit 0d4c796975
Signed by: lilly
SSH key fingerprint: SHA256:y9T5GFw2A20WVklhetIxG1+kcg/Ce0shnQmbu1LQ37g

View file

@ -43,7 +43,11 @@ async fn main() -> eyre::Result<()> {
println!(); println!();
println!(" help -> The help command prints this message. Hello 👋"); println!(" help -> The help command prints this message. Hello 👋");
println!(""); println!("");
println!(" lock <door> [wait|nowait] -> Locks the door identified with <door>."); println!(
" show-locks -> Display a list of currently connected locks along with their status."
);
println!("");
println!(" lock <lock> [wait|nowait] -> Locks the door identified with <lock>.");
println!( println!(
" Also takes an additional parameter of \"wait\" or \"nowait\"which dictates" " 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!(" it waits until the lock status changes to open.");
println!(" Defaults to \"wait\" if not specified."); println!(" Defaults to \"wait\" if not specified.");
println!(); println!();
println!(" unlock <door> [wait|nowait] -> Unlocks the door identified with <door>."); println!(" unlock <lock> [wait|nowait] -> Unlocks the lock identified with <lock>.");
println!( println!(
" Also takes an additional parameter of \"wait\" or \"nowait\"which dictates" " Also takes an additional parameter of \"wait\" or \"nowait\"which dictates"
); );