| From | Sent On | Attachments |
|---|---|---|
| Darren Reed | Jun 9, 1998 9:06 am | |
| Hellmuth Michaelis | Jun 9, 1998 10:51 am | |
| Christopher R. Bowman | Jun 9, 1998 11:39 am | |
| The Classiest Man Alive | Jun 9, 1998 12:47 pm | |
| Jordan K. Hubbard | Jun 9, 1998 4:31 pm | |
| Darren Reed | Jun 10, 1998 6:35 am | |
| Jordan K. Hubbard | Jun 10, 1998 7:17 am | |
| Darren Reed | Jun 10, 1998 7:31 am | |
| Jordan K. Hubbard | Jun 10, 1998 7:37 am | |
| Darren Reed | Jun 10, 1998 8:04 am | |
| The Classiest Man Alive | Jun 10, 1998 8:28 am | |
| Snob Art Genre | Jun 10, 1998 9:41 am | |
| Archie Cobbs | Jun 10, 1998 12:26 pm | |
| Sue Blake | Jun 15, 1998 2:57 pm | |
| Mike | Jun 15, 1998 3:36 pm | |
| Jordan K. Hubbard | Jun 15, 1998 4:07 pm | |
| Sue Blake | Jun 15, 1998 4:30 pm | |
| Sue Blake | Jun 15, 1998 4:49 pm | |
| Mike | Jun 15, 1998 5:19 pm | |
| Jordan K. Hubbard | Jun 15, 1998 5:43 pm | |
| desiertos | Jun 15, 1998 6:01 pm | |
| Tim Vanderhoek | Jun 15, 1998 6:34 pm | |
| Sue Blake | Jun 15, 1998 7:27 pm | |
| Jay Nelson | Jun 15, 1998 7:43 pm | |
| Sue Blake | Jun 15, 1998 8:08 pm | |
| Snob Art Genre | Jun 15, 1998 10:38 pm | |
| Sue Blake | Jun 15, 1998 11:46 pm | |
| Jordan K. Hubbard | Jun 16, 1998 12:42 am | |
| Jordan K. Hubbard | Jun 16, 1998 1:00 am | |
| Garance A Drosihn | Jun 16, 1998 1:09 am | |
| Garance A Drosihn | Jun 16, 1998 1:20 am | |
| Keith Jones | Jun 16, 1998 2:31 am | |
| Nick Hibma | Jun 16, 1998 2:34 am | |
| Nick Hibma | Jun 16, 1998 3:12 am | |
| Tim Vanderhoek | Jun 16, 1998 4:07 am | |
| Jordan K. Hubbard | Jun 16, 1998 4:54 am | |
| Jamie Bowden | Jun 16, 1998 5:05 am | |
| Jamie Bowden | Jun 16, 1998 5:45 am | |
| Sue Blake | Jun 16, 1998 7:46 am | |
| Sue Blake | Jun 16, 1998 7:59 am | |
| Snob Art Genre | Jun 16, 1998 8:19 am | |
| Sue Blake | Jun 16, 1998 8:23 am | |
| Snob Art Genre | Jun 16, 1998 8:30 am | |
| Marc van Kempen | Jun 16, 1998 10:07 am | |
| Jordan K. Hubbard | Jun 16, 1998 9:49 pm | |
| Nick Hibma | Jun 17, 1998 8:26 am | |
| Garance A Drosihn | Jun 17, 1998 9:19 am | |
| Nick Hibma | Jun 17, 1998 10:00 am | |
| Garance A Drosihn | Jun 17, 1998 10:53 am | |
| Snob Art Genre | Jun 17, 1998 1:14 pm | |
| Stefan Eggers | Jun 19, 1998 1:09 am | |
| Jordan K. Hubbard | Jun 20, 1998 9:56 pm | |
| Ada | Jun 21, 1998 2:35 am | |
| Sue Blake | Jun 21, 1998 2:48 pm | |
| Jordan K. Hubbard | Jun 21, 1998 4:50 pm | |
| Chet Ramey | Jun 24, 1998 2:30 pm | |
| Ada | Jun 24, 1998 7:35 pm | |
| Richard Coleman | Jun 25, 1998 10:04 am | |
| Sue Blake | Jul 18, 1998 2:21 pm |
| Subject: | Re: 2.2.6 CD-ROM : Package dependencies up the creek ? | |
|---|---|---|
| From: | Chet Ramey (ch...@nike.ins.cwru.edu) | |
| Date: | Jun 24, 1998 2:30:35 pm | |
| List: | org.freebsd.freebsd-hackers | |
I'd like to see zsh pushed for inclusion into the contrib tree; it's small, beautiful, and inclusive (in that it understands a fair amount of csh as well as sh syntax).
Wow. This is the first time I've ever heard zsh described as `small' and `beautiful'. (FWIW, I don't think I'd describe bash that way, either, no matter how drunk I was.)
I'd say that bash and zsh are of comparable size. The current development version of bash-2.03, dynamically linked against shared readline and history libraries, is:
nike.ins.cwru.edu(2)$ size bash text data bss dec hex 311296 12288 14048 337632 526e0 nike.ins.cwru.edu(2)$ ldd bash bash: -lreadline.4 => /usr/local/lib/libreadline.so.4.0 (0x8069000) -lhistory.4 => /usr/local/lib/libhistory.so.4.0 (0x808a000) -ltermcap.2 => /usr/lib/libtermcap.so.2.1 (0x808f000) -lc.3 => /usr/lib/libc.so.3.0 (0x8093000)
A freshly-built zsh-3.1.4 on the same machine is:
nike.ins.cwru.edu(2)$ size /usr/local/build/shells/zsh-3.1.4/Src/zsh text data bss dec hex 348160 24576 24136 396872 60e48 nike.ins.cwru.edu(2)$ ldd /usr/local/build/shells/zsh-3.1.4/Src/zsh /usr/local/build/shells/zsh-3.1.4/Src/zsh: -ltermcap.2 => /usr/lib/libtermcap.so.2.1 (0x8072000) -lc.3 => /usr/lib/libc.so.3.0 (0x8076000)
Bash-2.02 (the currently-released version) is:
nike.ins.cwru.edu(2)$ size ../bash-2.02/bash text data bss dec hex 389120 24576 6740 420436 66a54 nike.ins.cwru.edu(2)$ ldd ../bash-2.02/bash ../bash-2.02/bash: -ltermcap.2 => /usr/lib/libtermcap.so.2.1 (0x807c000) -lc.3 => /usr/lib/libc.so.3.0 (0x8080000)
For grins, bash-2.01.1 was:
nike.ins.cwru.edu(2)$ /bin/bash --version GNU bash, version 2.01.1(1)-release (i386-pc-freebsd2.2.5) Copyright 1997 Free Software Foundation, Inc. nike.ins.cwru.edu(2)$ size /bin/bash text data bss dec hex 364544 24576 5060 394180 603c4 nike.ins.cwru.edu(2)$ ldd /bin/bash /bin/bash: -ltermcap.2 => /usr/lib/libtermcap.so.2.1 (0x8076000) -lc.3 => /usr/lib/libc.so.3.0 (0x807a000)
-- ``The lyf so short, the craft so long to lerne.'' - Chaucer
Chet Ramey, Case Western Reserve University Internet: ch...@po.CWRU.Edu
To Unsubscribe: send mail to majo...@FreeBSD.org with "unsubscribe freebsd-hackers" in the body of the message





