tmount: find kext with MacFUSE >=4 and macOS >=11 - plan9port - [fork] Plan 9 from user space
 (HTM) git clone git://src.adamsgaard.dk/plan9port
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit 90971376a5e8620fc62579aa1b3be26245ec8c06
 (DIR) parent f62d4c4143c9a21e488fca658590e1546700586f
 (HTM) Author: Connor Taffe <cpaynetaffe@gmail.com>
       Date:   Sun, 31 Jan 2021 19:33:14 -0600
       
       mount: find kext with MacFUSE >=4 and macOS >=11
       
       Diffstat:
         M bin/mount                           |       3 +++
       
       1 file changed, 3 insertions(+), 0 deletions(-)
       ---
 (DIR) diff --git a/bin/mount b/bin/mount
       t@@ -20,11 +20,14 @@ case FreeBSD
                echo 'don''t know how to mount (no fuse)' >[1=2]
        case Darwin
                version=`{sw_vers -productVersion|cut -d. -f1,2}
       +        major_version = `{echo $version|cut -d. -f1}
                if(sysctl fuse.version >[2]/dev/null |9 grep -si 'fuse.version' ||
                   sysctl macfuse.version.number >[2]/dev/null |9 grep -si 'fuse.version' ||
                   sysctl osxfuse.version.number >[2]/dev/null |9 grep -si 'fuse.version' ||
                   test -d /System/Library/Extensions/fusefs.kext ||
                   test -d /Library/Filesystems/osxfuse.fs/Contents/Extensions/$version/osxfuse.kext ||
       +           test -d /Library/Filesystems/macfuse.fs/Contents/Extensions/$version/macfuse.kext ||
       +           test -d /Library/Filesystems/macfuse.fs/Contents/Extensions/$major_version/macfuse.kext ||
                   test -d /Library/Filesystems/osxfusefs.fs/Support/osxfusefs.kext ||
                   test -d /opt/local/Library/Filesystems/osxfuse.fs ||
                   test -d /Library/Filesystems/fusefs.fs/Support/fusefs.kext)