Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
at v5.11-rc6 15 lines 204 B view raw
1#!/bin/sh 2# SPDX-License-Identifier: GPL-2.0 3 4if test -d "./mnt" ; then 5 fusermount -u ./mnt 6 rmdir ./mnt 7fi 8 9set -e 10 11mkdir mnt 12./fuse_mnt ./mnt 13./fuse_test ./mnt/memfd $@ 14fusermount -u ./mnt 15rmdir ./mnt