Answers for "fusermount check if mounted"

0

fusermount check if mounted

if grep -qs '/mnt/foo ' /proc/mounts; then
    echo "It's mounted."
else
    echo "It's not mounted."
fi
Posted by: Guest on March-11-2022

Browse Popular Code Answers by Language