# shellcheck shell=dash disable=SC2154,SC2034
xrc:mod:lib shodan      entitydb/ls entitydb/search
# https://entitydb.shodan.io/
___x_cmd_shodan_entitydb(){
    local X_help_cmd='x help -m shodan entitydb';   help:arg:parse
    [ $# -gt 0 ]    || set -- ls

    local op="$1";      shift
    case "$op" in
        ls|search)      ___x_cmd_shodan_entitydb_"$op" "$@" ;;
        -h|--help)      x help -m shodan entitydb ;;
    esac
}
