Update Uploading and downloading data authored by Kai van Lopik's avatar Kai van Lopik
...@@ -25,7 +25,7 @@ Because of PEP's [pseudonymization](Pseudonymization) goals, uploaders will ofte ...@@ -25,7 +25,7 @@ Because of PEP's [pseudonymization](Pseudonymization) goals, uploaders will ofte
/app/pepcli store -sp POM1EC7713461 -c Holter.Visit1 -i ~/holter/49170044-1C98-4A21-886C-A6E18DE1F885.ecg /app/pepcli store -sp POM1EC7713461 -c Holter.Visit1 -i ~/holter/49170044-1C98-4A21-886C-A6E18DE1F885.ecg
``` ```
Instead of reading data from a file, the `pepcli store` command can also process data provided over the standard input stream (`stdin`). This feature allows it to be included in command redirection pipelines. The use of `stdin` is denoted by omitting the `-i` switch, or by passing a hyphen `-` to it. E.g.: Instead of reading data from a file, the `pepcli store` command can also process data provided over the `stdin` standard input stream. This feature allows it to be included in command redirection pipelines. The use of `stdin` is denoted by omitting the `-i` switch, or by passing a hyphen `-` to it. E.g.:
``` ```
curl https://ecg.ppth.com/49170044-1C98-4A21-886C-A6E18DE1F885/ | /app/pepcli store -sp POM1EC7713461 -c Holter.Visit1 curl https://ecg.ppth.com/49170044-1C98-4A21-886C-A6E18DE1F885/ | /app/pepcli store -sp POM1EC7713461 -c Holter.Visit1
... ...
......