From ac24a5c3bfd460a6ee4e6dbe661c38008f79e135 Mon Sep 17 00:00:00 2001 From: dmotte <37443982+dmotte@users.noreply.github.com> Date: Mon, 16 Oct 2023 20:01:00 +0200 Subject: [PATCH] Fixed Bash quotes in usage example --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3825e5f..c061efb 100644 --- a/README.md +++ b/README.md @@ -19,8 +19,8 @@ pip3 install sshkp ## Usage ```bash -export KP_FILENAME="/path/to/my/keepass/database.kdbx" -read -rsp "Password: " KP_PASSWORD && export KP_PASSWORD +export KP_FILENAME=/path/to/my/keepass/database.kdbx +read -rsp 'Password: ' KP_PASSWORD && export KP_PASSWORD sshkp user@hostname ls -la # executes a command sshkp user@hostname .print # just prints the SSH password ```