aboutsummaryrefslogtreecommitdiff
path: root/lib/shell/README.md
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2025-04-07 18:33:48 -0400
committerBruce Hill <bruce@bruce-hill.com>2025-04-07 18:33:48 -0400
commit98a70af838d5f97291c2bae78b62c78560d728c4 (patch)
treea710f71e41550eb23b82029e4fb0bb6f1e5e54ea /lib/shell/README.md
parentfac503b82fe21ce69673f886b0b450c8343a50eb (diff)
Add readmes
Diffstat (limited to 'lib/shell/README.md')
-rw-r--r--lib/shell/README.md13
1 files changed, 13 insertions, 0 deletions
diff --git a/lib/shell/README.md b/lib/shell/README.md
new file mode 100644
index 00000000..4adb8cff
--- /dev/null
+++ b/lib/shell/README.md
@@ -0,0 +1,13 @@
+# Shell
+
+This module defines a `lang` for running shell scripts:
+
+```tomo
+use shell
+
+>> $Shell"
+ seq 5
+ echo DONE
+":get_output()
+= "1$\n2$\n3$\n4$\n5$\nDONE"
+```