From 0b2903d0fa66659ab515a85fd026fb3e36a8fa2a Mon Sep 17 00:00:00 2001 From: cmdoret Date: Tue, 23 Jul 2024 20:14:38 +0200 Subject: [PATCH] docs(readme): secret example --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index 31da660..b039351 100644 --- a/README.md +++ b/README.md @@ -112,6 +112,14 @@ Pseudonomyzation requires an RDF file, index and config as input: tripsu pseudo --index index.nt --config rules.yaml input.nt > output.nt ``` +>[!NOTE] +> By default, pseudonymization uses a random seed. To make the process deterministic, you may provide a secret. + +```shell +echo "The quick brown fox jumps over the lazy dog" > secret.txt +tripsu pseudo -s secret.txt -x index.nt -c rules.yaml input.nt > output.nt +``` + > [!TIP] > For each subcommand, you can use `--help` to see all options.