From 4e896c7ba6e83f1bed411e6ea36fe8847f319add Mon Sep 17 00:00:00 2001 From: Matthew Coleman Date: Fri, 9 Feb 2024 16:00:34 -0500 Subject: [PATCH] Update readme --- README.md | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 70ab996..4889c47 100644 --- a/README.md +++ b/README.md @@ -48,6 +48,13 @@ Cryptarch's interactive window. The examples above use stream displays. ![Demo of graph display](https://raw.githubusercontent.com/spacez320/cryptarch/master/media/graph-display.gif) +### Persistence + +Cryptarch, by default, will store results and load them when re-executing the same query. Storage is +located in the user's cache directory. + +See: + ### More Examples > The examples below have been tested on `GNU bash, version 5.2.15(1)-release`. @@ -56,11 +63,11 @@ Cryptarch's interactive window. The examples above use stream displays. # See help. cryptarch -h -# Execute `whoami` once, printing results to the console. +# Execute `whoami` once, printing results to the console and waiting for a user to `^C`. cryptarch -q 'whoami' -# Execute `uptime` continuously, printing results to the console. -cryptarch -q 'uptime' -t -1 +# Execute `uptime` continuously, printing results to the console, without using persistence. +cryptarch -q 'uptime' -t -1 -e=false # Get the size of an NVME used space and output it to a table. cryptarch -q 'df -h | grep nvme0n1p2 | awk '\''{print $3}'\''' -r 3 -v "NVME Used Space" -t -1