8 lines
134 B
Plaintext
8 lines
134 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
if [ "$1" == "umount" ]; then
|
||
|
fusermount -u ~/Documents/Private
|
||
|
else
|
||
|
encfs ~/Documents/.private ~/Documents/Private
|
||
|
fi
|