early release preparation #1

Merged
suyono merged 2 commits from gitea.suyono.dev/suyono/simple-privacy-tool/alpha-preparation into main 2023-07-23 22:19:07 +10:00
Showing only changes of commit 1d91861915 - Show all commits

View File

@ -27,12 +27,7 @@ simple-privacy-tool decrypt cryptedfile plainfile
```
#### Using STDIN/STDOUT
`simple-privacy-tool` can operate on `STDIN` or `STDOUT`. Just replace the file path with `-`
`simple-privacy-tool` can operate on `STDOUT`. Just replace the file path with `-`
```shell
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
simple-privacy-tool encrypt srcFile - | another-command
```