Comments

You must log in or register to comment.

causa-sui t1_j3d9bbp wrote

tar cf - . | gpg --symmetric -o files.tar.gpg
13

djsnipa1 t1_j3dwvch wrote

Can this easily be built to a x86 Linux binary? So I don’t have to have cargo installed?

2

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.

4