# shellcheck shell=dash

xrc:mod:lib shodan  cpe/count cpe/search

___x_cmd_shodan_cpe(){
     [ $# -gt 0 ]    ||  set -- -h

    local op="$1";  shift
    case "$op" in
        search|count)
            "___x_cmd_shodan_cpe_${op}"         "$@" ;;
        *)
            ___x_cmd_shodan_cpe_search "$op"    "$@" ;;
    esac
}




