Comments
djsnipa1 t1_j3dwvch wrote
Can this easily be built to a x86 Linux binary? So I don’t have to have cargo installed?
djsnipa1 t1_j3dx0q4 wrote
I wish I knew where to get super useful commands like this! Thanks
causa-sui t1_j3enkaq wrote
Learn the tools and how to work with pipelines in the shell. Read the manpages etc. Unix philosophy is that everything does one thing but can be easily linked through pipelines. Then you can combine tools to do arbitrary things like this, rather than memorizing incantations.
asdf49 t1_j3f2mx4 wrote
I was going to say...this can be accomplished in any shell environment with a couple of lines and an executable that encrypts data.
djsnipa1 t1_j3f5m1b wrote
Yeah, thanks for the response. Is there a good place that has a lot of useful one-liners?
Adventurous-Inside36 OP t1_j3ffmso wrote
The problem that I found with pipelining is that it doesn’t support multithreading and essentially the bottleneck can be the single tar file which is piped into gpg
.
Adventurous-Inside36 OP t1_j3ffrq2 wrote
I will soon add binaries in Github Releases
Edit: You can download binaries from Release tab
causa-sui t1_j3hoz0e wrote
man tar
has several
causa-sui t1_j3d9bbp wrote