
xrc:mod:lib     facl     get/linux       get/darwin

___x_cmd_facl_get(){
    [ $# -gt 0 ] || set -- --help

    case "$1" in
        -h|--help)  ___x_cmd help -m facl get   "$@"; return ;;
    esac

    local x_
    ___x_cmd os name_ || return

    case "$x_" in
        linux)      ___x_cmd_facl_get___linux    "$@" ;;
        darwin)     ___x_cmd_facl_get___darwin   "$@" ;;
        *)          N=facl M="Unsupported os -> $x_" log:ret:1 ;;
    esac
}
