15 lines
166 B
Bash
15 lines
166 B
Bash
#!/bin/sh
|
|
|
|
if test -d "./mnt" ; then
|
|
fusermount -u ./mnt
|
|
rmdir ./mnt
|
|
fi
|
|
|
|
set -e
|
|
|
|
mkdir mnt
|
|
./fuse_mnt ./mnt
|
|
./fuse_test ./mnt/memfd
|
|
fusermount -u ./mnt
|
|
rmdir ./mnt
|