Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v4.0-rc2 14 lines 166 B view raw
1#!/bin/sh 2 3if test -d "./mnt" ; then 4 fusermount -u ./mnt 5 rmdir ./mnt 6fi 7 8set -e 9 10mkdir mnt 11./fuse_mnt ./mnt 12./fuse_test ./mnt/memfd 13fusermount -u ./mnt 14rmdir ./mnt