This is an automated email from the git hooks/post-receive script.

git pushed a commit to branch master
in repository eshell.

View the commit online.

commit 48d3c069ec378367cc6d04a3507f6466091c4500
Author: swagtoy <m...@swag.toys>
AuthorDate: Tue Oct 8 12:18:20 2024 -0400

    Update README
---
 README.md | 35 +++++++++++++++++++++++++++++++++--
 1 file changed, 33 insertions(+), 2 deletions(-)

diff --git a/README.md b/README.md
index de5a57a..83d3e11 100644
--- a/README.md
+++ b/README.md
@@ -1,3 +1,34 @@
-# eshell
+# Eshell
 
-A powerful shell using EFL
\ No newline at end of file
+A powerful shell and scripting language using EFL with a simple enough syntax.
+
+A sample speaks a thousand words:
+
+```
+alias ls = list_dirs
+echo `{(ls).join('\n').to_upper()}
+
+vim `ls
+
+while true { echo y } | pkg install enlightenment
+
+let x = [1, 2, 3]
+cat `{x.foreach(echo)}
+
+# Types are optional!
+func my_power(x: double, sq = 2: int) {
+	x ** sq
+}
+```
+
+ - **Portable...** - Write once, deploy anywhere, as the kids often say. Many utilities
+   are replaced with more generic, portable utilities, such as mv, rm, and more.
+ - **Familiar...** - Offers a unique, yet familiar syntax. Python, Perl, Lua, and sh/bash/zsh refugees welcome!
+ - **Extendable...** - Add new things with plugins. Need autocompletion? Batteries
+   already included in the box. You just need to put those batteries in!
+ - **Powerful...** - Create interative GUI elements and more, right in your shell!
+ - **And Fast...** - Say no more!
+
+# License
+
+See `LICENSE`. Using the BSD 2-Clause License.
\ No newline at end of file

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.

Reply via email to