libgocryptfs/gocryptfs.sh

15 lines
236 B
Bash
Raw Normal View History

2015-10-03 19:15:15 +02:00
#!/bin/bash
# Run the gocryptfs process in the background
set -eu
dir=$(dirname "$0")
# This needs user input and cannot run in the background
if [[ $* == *--init* ]]; then
"$dir/gocryptfs" $*
else
"$dir/gocryptfs" $* & disown
fi