From 6df21b5a19c118820dbfc21370cd6ac61d726a93 Mon Sep 17 00:00:00 2001 From: Leo Coogan Date: Sat, 24 Jul 2021 22:31:55 -0400 Subject: [PATCH] Added script --- COPYRIGHT.txt | 2 ++ README.md | 1 + bin/eliza | 5 +++++ 3 files changed, 8 insertions(+) create mode 100755 bin/eliza diff --git a/COPYRIGHT.txt b/COPYRIGHT.txt index 023335c..228aea0 100644 --- a/COPYRIGHT.txt +++ b/COPYRIGHT.txt @@ -37,3 +37,5 @@ Copyright (c) 2010 magical - nlzss, nlzss-c, licensed under the MIT license. A l Copyright (c) 202x Stéphane Peter - makeself, licensed under GPLv2.0 or later. A license copy is provided in LICENSES/LICENSES/GPL-2.0-or-later.txt. db is licensed under the Unlicense. A license copy is provided in LICENSES/Unlicense.txt. + +eliza is licensed under the Unlicense. A license copy is provided in LICENSES/Unlicense.txt. diff --git a/README.md b/README.md index c479f12..8a836fe 100644 --- a/README.md +++ b/README.md @@ -6,6 +6,7 @@ A collection of useful scripts. These scripts are written by various authors. At |----------------|-----------------------------------------------------------------------| | abc | A Binary Comparison tool. | | db | Quickly cd into specific directories using short aliases. | +| eliza | Runs the perl clone of the Eliza chatbot. | | ffconv | Batch convert mkvs to mp4s. | | ffconv-a | Batch convert from one format to another. | | ffconv-ar | Batch convert from one format to another without preserving metadata. | diff --git a/bin/eliza b/bin/eliza new file mode 100755 index 0000000..a90a9dc --- /dev/null +++ b/bin/eliza @@ -0,0 +1,5 @@ +#!/bin/perl +use Chatbot::Eliza + +$bot = new Chatbot::Eliza; +$bot->command_interface;