diff README.txt @ 54:a791d615545c

oops, had to fix for redirect plus pipe
author catherine@localhost
date Mon, 09 Jun 2008 12:05:39 -0400
parents 1899088dd95d
children
line wrap: on
line diff
--- a/README.txt	Mon Jun 09 10:46:00 2008 -0400
+++ b/README.txt	Mon Jun 09 12:05:39 2008 -0400
@@ -6,9 +6,12 @@
 - Load commands from file, save to file, edit commands in file
 - Multi-line commands
 - Case-insensitive commands
-- Special-character shortcut commands (beyond cmd's "@" and "!")
+- Special-character shortcut commands (beyond cmd's `@` and `!`)
 - Settable environment parameters
 - Parsing commands with flags
+- Redirection to file with `>`, `>>`; input from file with `<`
+- Bare '>', '>>' with no filename send output to paste buffer
+- Pipe output to shell commands with `|`
 
 Instructions for implementing each feature follow.
 
@@ -166,4 +169,9 @@
     set maxrepeats
     -------------------------[6]
     set maxrepeats 5
-    (Cmd)
+    (Cmd) speak a dead parrot > pet.txt
+    (Cmd) speak < pet.txt
+    a dead parrot
+    (Cmd) speak only resting | wc
+      1       2      13
+    (Cmd)