aboutsummaryrefslogtreecommitdiffstats
path: root/tools/sh/search_duckduckgo.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tools/sh/search_duckduckgo.sh')
-rwxr-xr-xtools/sh/search_duckduckgo.sh16
1 files changed, 0 insertions, 16 deletions
diff --git a/tools/sh/search_duckduckgo.sh b/tools/sh/search_duckduckgo.sh
deleted file mode 100755
index c5ab565..0000000
--- a/tools/sh/search_duckduckgo.sh
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/usr/bin/env bash
-set -e
-
-# @describe Takes in a query string and returns search result from DuckDuckGo.
-# Use it to answer user questions that require dates, facts, real-time information, or news.
-# This ensures accurate and up-to-date answers.
-
-# @meta require-tools ddgr
-# @env DDG_MAX_RESULTS=5 The max results to return.
-# @option --query! The query to search for.
-
-main() {
- ddgr -n $DDG_MAX_RESULTS --json "$argc_query"
-}
-
-eval "$(argc --argc-eval "$0" "$@")"