From c40742c807e4e9937f8932fd0576a38c471b8123 Mon Sep 17 00:00:00 2001 From: Robin Krahl Date: Fri, 9 Apr 2021 20:20:40 +0200 Subject: [PATCH] Fix bash completion instructions This patch adds the missing shell argument to the shell-complete invocation in the README. Fixes #140 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 96fe1088..f68a4498 100644 --- a/README.md +++ b/README.md @@ -119,7 +119,7 @@ arguments to them. A completion script can be generated via the `shell-complete` utility program and then only needs to be sourced to make the current shell provide context-sensitive tab completion support. ```bash -$ cargo run --bin=shell-complete > nitrocli.bash +$ cargo run --bin=shell-complete bash > nitrocli.bash $ source nitrocli.bash ```