about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAndinus <andinus@nand.sh>2020-10-15 16:43:01 +0530
committerAndinus <andinus@nand.sh>2020-10-15 16:43:01 +0530
commitea4cb9913e6c337e2bb766d0d47f35a3ecadbafd (patch)
treef894c4b1f94b5402900e9d50c994fff08254eb91
parentb69d5427c4f0eb8a1ebed4c729fdc3df05807ebd (diff)
downloadleo-ea4cb9913e6c337e2bb766d0d47f35a3ecadbafd.tar.gz
Remove delete option from examples in README
-rw-r--r--README13
1 files changed, 8 insertions, 5 deletions
diff --git a/README b/README
index 9ed1577..b878543 100644
--- a/README
+++ b/README
@@ -79,7 +79,7 @@ with signify(1).
   ━━━━━━━━━━━━━━━━━━━━━━━━
    encrypt  `LEO_ENCRYPT'
    sign     `LEO_SIGN'
-   delete   `LEO_DELETE'
+   signify  `LEO_SIGNIFY'
   ━━━━━━━━━━━━━━━━━━━━━━━━
 
 
@@ -114,14 +114,17 @@ with signify(1).
 ═════════
 
   ┌────
-  │ # This will encrypt, sign & also delete the tar file for documents,
-  │ # journal, pass & ssh profile.
-  │ leo --encrypt --sign --delete documents journal pass ssh
+  │ # This will encrypt, sign the tar file for documents, journal, pass &
+  │ # ssh profile.
+  │ leo --encrypt --sign documents journal pass ssh

   │ # This will do the same. You can add these environment variables to
   │ # your shell rc & then just run ``leo documents journal ssh pass'' to
   │ # do the same.
-  │ LEO_ENCRYPT=1 LEO_SIGN=1 LEO_DELETE=1 leo documents journal ssh pass
+  │ LEO_ENCRYPT=1 LEO_SIGN=1 leo documents journal ssh pass
+  │
+  │ # Sign the file with signify(1).
+  │ leo --signify journal
   └────