Revision 9006,
1.0 KB
checked in by ghudson, 28 years ago
(diff) |
This commit was generated by cvs2svn to compensate for changes in r9005,
which included commits to RCS files with non-trunk default branches.
|
Line | |
---|
1 | * Fix memory leak related to aliasrun(). Precmd, Cwdcmd etc. leak memory. |
---|
2 | |
---|
3 | * Fix migrate -site $$... Seems to hang... (aix370) |
---|
4 | |
---|
5 | * Fix history in loops. |
---|
6 | |
---|
7 | * Fix loops so that they work inside aliases. |
---|
8 | |
---|
9 | * Fix variable substitutions so that can behave recursively; i.e. I want |
---|
10 | to be able to say echo $foo:t:e |
---|
11 | |
---|
12 | * New idea. |
---|
13 | Lots of people seem to like the idea to be able to do sed type |
---|
14 | operations on shell variables. Maybe we can extend the syntax |
---|
15 | of the variable editing to understand string operations. |
---|
16 | So I would like to be able to use: |
---|
17 | > set a="this is a STRING" |
---|
18 | > echo $a:[3-] |
---|
19 | is is a STRING |
---|
20 | > echo $a:[#] |
---|
21 | 16 |
---|
22 | > echo $a:[6-7] |
---|
23 | is |
---|
24 | > echo $a:[-2] |
---|
25 | ng |
---|
26 | > echo $a:[-20] |
---|
27 | Subscript out of bounds. |
---|
28 | > echo $a:[2-20] |
---|
29 | Subscript out of bounds. |
---|
30 | > echo $a:[1-1]:u$a:[2-]. |
---|
31 | This is a string. |
---|
32 | |
---|
33 | * Fix pipelines that contain builtins so that they behave correctly. |
---|
34 | I tried to fix that (most of the code is in sh.sem.c, but it works |
---|
35 | only for non POSIX machines cause otherwise the setpgid() I added |
---|
36 | fails). |
---|
37 | |
---|
38 | * Fix the correct code... How to do that involves A.I.... |
---|
Note: See
TracBrowser
for help on using the repository browser.