7 Commits

Author SHA1 Message Date
2508b4c822 chore: merge back to dev 2023-07-24 15:32:37 +10:00
6c4b48873b wip: debugging issue 2023-07-23 22:00:52 +10:00
7b29d8f6cc feat: encrypt & decrypt tested (simple) 2023-07-21 20:06:04 +10:00
dd0524d680 WIP 2023-07-20 10:55:29 +10:00
bd976b1533 change workstation 2023-07-20 08:32:38 +10:00
3dba047793 WIP 2023-07-11 16:15:49 +10:00
91f7cbbd06 change workstation 2023-07-11 10:57:17 +10:00

View File

@@ -27,7 +27,12 @@ simple-privacy-tool decrypt cryptedfile plainfile
``` ```
#### Using STDIN/STDOUT #### Using STDIN/STDOUT
`simple-privacy-tool` can operate on `STDOUT`. Just replace the file path with `-` `simple-privacy-tool` can operate on `STDIN` or `STDOUT`. Just replace the file path with `-`
```shell ```shell
simple-privacy-tool encrypt srcFile - | another-command tar -zcf - dir | simple-privacy-tool encrypt - - | another-command
```
Special usage, just omit both file paths to use `STDIN` and `STDOUT`.
```shell
tar -zcf - dir | simple-privacy-tool encrypt | another-command
``` ```