Is there an option to pass "paranoia mode" to encfs from the command line?

0

I want to pass the p option to encfs from the command line to set "paranoia mode," and alias the command to something else so users can work with it without knowing details.

Is there an option to pass "paranoia mode" from the command line?

amin

Posted 2011-02-14T12:32:33.250

Reputation: 125

Answers

0

it is enough to open a text file and type "p" in it then redirect stdin to it:

encfs /.encfs /ecfs

as simple as that!

amin

Posted 2011-02-14T12:32:33.250

Reputation: 125

1

echo p | encfs ~/.encfs ~/encfs
encfs ~/.encfs ~/encfs <<< "p"

user1686

Posted 2011-02-14T12:32:33.250

Reputation: 283 655