mirror of
https://github.com/Phantop/appdwarf.git
synced 2024-11-14 02:42:51 +00:00
10 lines
152 B
Bash
Executable file
10 lines
152 B
Bash
Executable file
#!/bin/sh
|
|
DIR=
|
|
if [ ! -d "$DIR" ]; then
|
|
mkdir "$DIR"
|
|
bindfs --no-allow-other "$APPDIR" "$DIR"
|
|
else
|
|
fusermount -u "$DIR"
|
|
rmdir "$DIR"
|
|
fi
|