comparison 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
comparison
equal deleted inserted replaced
53:2811505b0969 54:a791d615545c
4 4
5 - Searchable command history 5 - Searchable command history
6 - Load commands from file, save to file, edit commands in file 6 - Load commands from file, save to file, edit commands in file
7 - Multi-line commands 7 - Multi-line commands
8 - Case-insensitive commands 8 - Case-insensitive commands
9 - Special-character shortcut commands (beyond cmd's "@" and "!") 9 - Special-character shortcut commands (beyond cmd's `@` and `!`)
10 - Settable environment parameters 10 - Settable environment parameters
11 - Parsing commands with flags 11 - Parsing commands with flags
12 - Redirection to file with `>`, `>>`; input from file with `<`
13 - Bare '>', '>>' with no filename send output to paste buffer
14 - Pipe output to shell commands with `|`
12 15
13 Instructions for implementing each feature follow. 16 Instructions for implementing each feature follow.
14 17
15 - Searchable command history 18 - Searchable command history
16 19
164 (Cmd) history maxrepeats 167 (Cmd) history maxrepeats
165 -------------------------[5] 168 -------------------------[5]
166 set maxrepeats 169 set maxrepeats
167 -------------------------[6] 170 -------------------------[6]
168 set maxrepeats 5 171 set maxrepeats 5
169 (Cmd) 172 (Cmd) speak a dead parrot > pet.txt
173 (Cmd) speak < pet.txt
174 a dead parrot
175 (Cmd) speak only resting | wc
176 1 2 13
177 (Cmd)