diff options
Diffstat (limited to 'ircbot/GfindFeeds4bot')
-rwxr-xr-x | ircbot/GfindFeeds4bot | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/ircbot/GfindFeeds4bot b/ircbot/GfindFeeds4bot deleted file mode 100755 index a5439c5a..00000000 --- a/ircbot/GfindFeeds4bot +++ /dev/null @@ -1,17 +0,0 @@ -#! /bin/sh -# usage: GfindFeeds4bot QUERY -set -euf - -export query="$1" -export data="$( - curl -sS "https://www.google.com/uds/GfindFeeds?v=1.0&q=$query" -)" - -node <<EOF - query = process.env.query - data = JSON.parse(process.env.data) - - data.responseData.entries.forEach(function (entry, index) { - console.log(query + index + '|' + entry.url) - }) -EOF |