add help text concerning show-locks command in ssh-cli
All checks were successful
Build Container / Build Container (push) Successful in 4m18s
All checks were successful
Build Container / Build Container (push) Successful in 4m18s
This commit is contained in:
parent
7c64d57eb5
commit
0d4c796975
1 changed files with 6 additions and 2 deletions
|
|
@ -43,7 +43,11 @@ async fn main() -> eyre::Result<()> {
|
|||
println!();
|
||||
println!(" help -> The help command prints this message. Hello 👋");
|
||||
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!(
|
||||
" 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 <door> [wait|nowait] -> Unlocks the door identified with <door>.");
|
||||
println!(" unlock <lock> [wait|nowait] -> Unlocks the lock identified with <lock>.");
|
||||
println!(
|
||||
" Also takes an additional parameter of \"wait\" or \"nowait\"which dictates"
|
||||
);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue