mirror of
https://github.com/trapexit/mergerfs.git
synced 2024-11-23 13:29:29 +08:00
8 lines
143 B
Bash
Executable File
8 lines
143 B
Bash
Executable File
#!/bin/bash
|
|
|
|
FUSE_CFLAGS=$(pkg-config --cflags fuse)
|
|
|
|
echo "#include <fuse.h>" | cpp ${FUSE_CFLAGS} | grep -q "${1}"
|
|
|
|
[ "$?" != "0" ]; echo $?
|