This repository has been archived on 2022-02-20. You can view files and clone it, but cannot push or open issues/pull-requests.
|
#!/bin/bash
|
|
# must be json as a string, depends on jq
|
|
mounted () {
|
|
[[ ! $1 ]] && echo no mount point to test && return 2
|
|
mountpoint "$1" &> /dev/null && echo yes || return 1
|
|
}
|