From f76665d5f66fecd78d77292a0540f7f562320254 Mon Sep 17 00:00:00 2001 From: Jacob McDonnell Date: Fri, 29 Oct 2021 14:10:31 -0400 Subject: Added a README file and cleaned up the folder --- README.md | 16 ++++++++++++++++ ed.hup | 8 -------- jed.class | Bin 5028 -> 0 bytes jed.jar | Bin 3321 -> 0 bytes test.txt | 9 --------- tests/ed.txt | 8 ++++++++ tests/test.txt | 9 +++++++++ 7 files changed, 33 insertions(+), 17 deletions(-) create mode 100644 README.md delete mode 100644 ed.hup delete mode 100644 jed.class delete mode 100644 jed.jar delete mode 100644 test.txt create mode 100644 tests/ed.txt create mode 100644 tests/test.txt diff --git a/README.md b/README.md new file mode 100644 index 0000000..8cabc1b --- /dev/null +++ b/README.md @@ -0,0 +1,16 @@ +# JED - Jacob's ed + +Jed is a line mode text editor written in Java. It is similar to ed but not a clone, infact the commands are changed. It currently works but has much room for improvement. + +## Building Jed + +``` +make +sudo cp jed /usr/bin/jed && sudo cp jed.jar /usr/bin/jed.jar +``` + +## TODO + +- Rewrite Parser function + +- Add Regex support \ No newline at end of file diff --git a/ed.hup b/ed.hup deleted file mode 100644 index 842c1cd..0000000 --- a/ed.hup +++ /dev/null @@ -1,8 +0,0 @@ -hello world this is a test -aaawell;sajdf;alsd -adding more test -test -test -no test -more test -motestre diff --git a/jed.class b/jed.class deleted file mode 100644 index 10132fc..0000000 Binary files a/jed.class and /dev/null differ diff --git a/jed.jar b/jed.jar deleted file mode 100644 index 6addd07..0000000 Binary files a/jed.jar and /dev/null differ diff --git a/test.txt b/test.txt deleted file mode 100644 index 6ac09a5..0000000 --- a/test.txt +++ /dev/null @@ -1,9 +0,0 @@ -hello world this is a test -aaawell;sajdf;alsd -adding more test -test -test -no test -more test -motestre -test testpenistest test test petestpe diff --git a/tests/ed.txt b/tests/ed.txt new file mode 100644 index 0000000..842c1cd --- /dev/null +++ b/tests/ed.txt @@ -0,0 +1,8 @@ +hello world this is a test +aaawell;sajdf;alsd +adding more test +test +test +no test +more test +motestre diff --git a/tests/test.txt b/tests/test.txt new file mode 100644 index 0000000..6ac09a5 --- /dev/null +++ b/tests/test.txt @@ -0,0 +1,9 @@ +hello world this is a test +aaawell;sajdf;alsd +adding more test +test +test +no test +more test +motestre +test testpenistest test test petestpe -- cgit v1.2.3