Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

ksh availability

10 views
Skip to first unread message

Randy King

unread,
Mar 5, 1985, 11:51:15 PM3/5/85
to
<><><><>

Although I am an employee of AT&T, I have always expressed my personal
opinions of our products openly (much to the dismay of some) whether I
felt it was good, mediocre, or bad. I say that so I don't sound like
yet another corporate commercial.

We have been using Dave's shell (ksh) for over a year now, and I can
confidently say that it has increased the efficiency of those who
have used it. I have used Mashey's shell, Bourne's shell, and toyed
with the "csh." All are great in their own right, but I feel that ksh
has finally pulled them all together and has improved on them.

The history functions, job control, vi mode, emacs mode, math and
array processing are incredible and a joy to use. Seriously, if I
didn't already have it I would get it. I'm pleased to see that it is
now available to everybody. When I first made it the "default" shell,
I didn't tell anyone to see what would break. After a couple of weeks
and no reports, I let folks in on it.

If you like csh and need /bin/sh compatibility, ksh will probably meet
or exceed your expectations. When someone posting a shell archive
caveats with "use standard shell, not csh" the subset of "standard"
shells includes ksh.

Sorry again for the commercial, but I feel that this chunk of code
can benefit many folks outside of the company. Like I said, these
are only my own opinions.
Randy King
AT&T-CP@MG
ihnp4!mgweed!rjk

Randy King

unread,
Mar 7, 1985, 4:56:06 PM3/7/85
to
<><><>

Geez, I sure stirred up some interest here. I think that I can answer all
the questions asked of me by re-iterating some of Dave Korn's comments:

Yes, ksh is available. No, it's not $100,000K per cpu. As I
understand it, it is $2K per *site*; i.e. all of your CPU's
can have it for that one-time cost.

For more info dial (201) 522-6900 at 1200 baud and log in as "guest."

Randy King
AT&T-CP@MG
ihnp4!mgweed!rjk

Doug Gwyn <gwyn>

unread,
Mar 8, 1985, 9:08:26 AM3/8/85
to
> ... the subset of "standard" shells includes ksh.

Question: Is ksh completely compatible with the SVR2 Bourne shell?
I seem to recall hearing that function definition was different..

Rick Richardson

unread,
Mar 8, 1985, 8:08:26 PM3/8/85
to
> ... array processing are incredible and a joy to use. Seriously, if I

> didn't already have it I would get it. I'm pleased to see that it is
> now available to everybody. ...
> Randy King

Well, I don't know about you, but it only cost me $800 for UNIX, including
the csh. Now they want to sell me the "ksh" for another $2000. No thanks.
This is one piece of software that for the price deserves to be pirated!

I stick with what I've done in the past: "csh" for my interactive shell,
and "sh" for all my scripts. And wait for the "ksh" price to come down.
--
Rick Richardson, PC Research, Inc.

{genrad|ihnp4|ima}!wjh12!talcott!sesame!{rick|pcrat!rick}
{cbosgd|harvard}!talcott!sesame!{rick|pcrat!rick}
rick%ses...@harvard.ARPA

Bill Stewart

unread,
Mar 12, 1985, 5:35:45 PM3/12/85
to
Doug Gwyn asked:

> Question: Is ksh completely compatible with the SVR2 Bourne shell?
> I seem to recall hearing that function definition was different..

No, the Sys V R2 Bourne-shell-upgrade is not compatible with ksh.
Lots of things are different, and the ksh stuff is mostly better.
I don't have ksh source on this machine, but Korn wrote a preliminary analysis
of the differences that comes with the source. Most of the difference are
either syntax (both shells doing the same thing, just a shade differently), or
features in ksh that aren't in SysVR2sh. For me, the latter is the important
concern - the Korn shell history mechanism is nice (yes, I've used csh.)

There is a "batch"-like interface similar in capability to csh's history, but the
interesting interface is the VISUAL mode - the current line on your CRT is a
one-line screen-editor window into your history file; you can set EDITOR=vi or
EDITOR=*macs to get vi-style or emacs-style editing commands.

Bill Stewart, ihnp4!ho95c!wcs

WeinertKD

unread,
Mar 13, 1985, 9:03:32 AM3/13/85
to
One minor correction. A SYS5R2 shell program will run under ksh, but
vice-versa may not work. The currently available ksh will accept
either definition for functions

fun_name () { | function fun_name {
stuff | stuff
} | }

This was done for compatability with the SYS5R2 shell.

Ken Weinert

David St.Pierre

unread,
Mar 13, 1985, 10:19:19 AM3/13/85
to
One of the modes ksh uses to define functions is compatible with SV_R2.
A nice additional feature is the ability to define an ENV variable which
points to a file of functions. This effectively allows functions to
continue to be defined across sub-shells. If you use 5620 layers or shl,
you will begin to appreciate this.

I have run across an inconsistency between ksh and sh. I would be grepping
for a particular string in a large file, creating a temporary sub-file.
If I found more than one match, I wanted to provide a selection mechanism
at the terminal. The following (abbreviated) fragment shows what I did:


PROFSIDS=/usr/ladm/lib/profs_ids
TMPB=yyy

grep -i "$1" $PROFSIDS > $TMPB
while :
do
read USERID SYSTEM NAME
if [ -z "$USERID" ]
then
break
fi
echo "NAME = $NAME, USERID = $USERID [y] \c"
read ANS < /dev/tty
if [ "$ANS" = "n" ]
then
continue
fi
echo "The answer was $ANS"
done < $TMPB

In "sh", I got the results I wanted. In ksh, $TMPB was closed after a single
line was read, presumably because /dev/tty was opened in the inner loop.

I'm not sure if this is a bug or feature. And my copy of ksh may have no
resemblance to the version being offered in the toolchest.

Gene Spafford

unread,
Mar 14, 1985, 5:28:20 PM3/14/85
to
In article <5...@rlgvax.UUCP> g...@rlgvax.UUCP (Guy Harris) writes:
>> Well, I don't know about you, but it only cost me $800 for UNIX, including
>> the csh. Now they want to sell me the "ksh" for another $2000. No thanks.
>> This is one piece of software that for the price deserves to be pirated!
>
>Point 1:
>
>If you got source for that $800, AT&T got ripped off and their lawyers will
>want to get somebody. The $2000 for "ksh" is for the *source* - that means
>if you don't have a UNIX source license, you probably can't get "ksh" source

Counterpoint:
Educational institutions pay $800 to get source licenses for Unix Sys V.
Another $150 (?) will get a Berkeley distribution tape. Do you think many
of us are going to pay $2000 for ksh? No! Nor are many of us going
to shell out the bucks that AT&T is charging for the new uucp stuff.
I don't know about other places, but we can't afford it here.

I guess many educational institutions, especially the public ones, will
never find out if the Korn shell is all that great, or if Honey DanBer
uucp is the niftiest thing since sliced yogurt. Whether that will
affect the future market for other AT&T goodies is beyond my ability
to forsee.
--
Gene "5 months and counting" Spafford
The Clouds Project, School of ICS, Georgia Tech, Atlanta GA 30332
CSNet: Spaf @ GATech ARPA: Spaf%GATech.CSNet @ CSNet-Relay.ARPA
uucp: ...!{akgua,allegra,hplabs,ihnp4,linus,seismo,ulysses}!gatech!spaf

Griff Smith

unread,
Mar 14, 1985, 8:38:06 PM3/14/85
to

>>> Well, I don't know about you, but it only cost me $800 for UNIX, including
>>> the csh. Now they want to sell me the "ksh" for another $2000. No thanks.
>>> This is one piece of software that for the price deserves to be pirated!
.
.
>>Point 1: (reasonable rebuttal)...
.
.

>Counterpoint:
>Educational institutions pay $800 to get source licenses for Unix Sys V.
>Another $150 (?) will get a Berkeley distribution tape. Do you think many
>of us are going to pay $2000 for ksh? No! Nor are many of us going
>to shell out the bucks that AT&T is charging for the new uucp stuff.
>I don't know about other places, but we can't afford it here.
>
>I guess many educational institutions, especially the public ones, will
>never find out if the Korn shell is all that great, or if Honey DanBer
>uucp is the niftiest thing since sliced yogurt. Whether that will
>affect the future market for other AT&T goodies is beyond my ability
>to forsee.

I suppose the "software for the people" contingent will rise in
righteous indignation, but...

Assuming that the current academic price for System V is still $800, we
are still giving it away. If your school can't afford normal
commercial software prices for at least some key utilities, it must be
a shoestring operation. When I was at the University of Pittsburgh, it
was "business as usual" to shell out about $5000/year for a software
maintenance contract; we had to pay $10000 for the "virtual memory"
upgrade for our TOPS-10 operating systems. Any useful software product
usually cost us at least $1000, and some were in the $5000 to $10000
range. A large product such as DISSPLA/TEL-A-GRAF had a special
educational rate of "only" $20000; the commercial rate was at least
$80000.

The Korn shell is a good product! I used csh for a year; then Dave
finally added BSD (i. e. real) job control and command edit mode to
ksh. I switched, and haven't looked back. Given the improvements it
can add to your computing environment, the price is low by commercial
standards.

Credits:
UNIX is a trademark of my employer.
TOPS-10 is probably still a trademark of Digital Equipment Corporation.
DISSPLA and TEL-A-GRAF (or some variation of those spellings) are
trademarks of ISSCO.

Disclaimer:
Prices are guesses, opinions are mine.
--

Griff Smith AT&T Bell Laboratories, Murray Hill
Phone: (201) 582-7736
Internet: g...@ulysses.uucp
UUCP: ulysses!ggs ( {allegra|ihnp4}!ulysses!ggs )

Gene Spafford

unread,
Mar 15, 1985, 8:22:33 AM3/15/85
to
I got some feedback on on my posting about not being able to afford the
cost of the Korn shell or Honey DanBer. It was suggested that we're a
"shoestring" operation if we can't afford the few thousand dollars
required to license those items.

The following was discussed a great deal in net.cse over the past
year, so I feel very certain that we're not the only educational
institution in this situation:

We're a public university. We're a public university in a state that
doesn't place a high priority on education (as is the case in most
states). We're a public university in a state where the majority of
state and federal legislators didn't attend our school -- in fact, most
of them attended the rival university across-state. Our
student-faculty ratios are too high, our equipment is outdated and
undersized, and we don't have any budget for software packages unless
some faculty member wants it for study under one of their grants.
We're not that different from most other educational institutions
around the country. Only a few places have the funds to pay a couple
thousand a pop out of petty cash for software packages. Here, we worry
if the general budget will have sufficient funds left so we can buy
paper for the last month out of each fiscal year.

Let me point out that we don't run the computing services on campus.
We only run the research machines and some of the teaching machines.
The main campus computing facility is two Cyber 855's running NOS.
Will the ksh run under NOS? If so, maybe we can talk somebody in the
computing services department to budget for it.

We're not a shoestring operation here. We have about 30 faculty
members, 200 graduate students (including about 50 PhD students), and
about 600 undergraduates. We provide all of those students with a
fine, in-depth education even though the resources aren't available to
make it as complete as some would wish. We don't teach Unix or C,
although some grad students and selected undergrads may be exposed to
it during some of their work. We just happen to have not enough
funding for the number of students and the kind of quality we try to
provide. It doesn't look like that will change anytime soon, for us,
or for other schools in similar situations. Unless of course we can
convince the current administration that we're a vital part of the
defense program in this country and we can get budgeted a few hundred
thousand dollars for screwdrivers and coffee makers.

Further discussion on this topic should probably be in net.cse; I have
provided a "Followup-to" line to reflect that.

G A Moffett

unread,
Mar 15, 1985, 4:20:47 PM3/15/85
to
> Doug Gwyn asked:
> > Question: Is ksh completely compatible with the SVR2 Bourne shell?
> > I seem to recall hearing that function definition was different..
>
> No, the Sys V R2 Bourne-shell-upgrade is not compatible with ksh.
> Lots of things are different, and the ksh stuff is mostly better.
>
> Bill Stewart, ihnp4!ho95c!wcs

This is rather misleading and the author should explain exactly
what IS different about the ksh. As far as I can tell, the only
difference in upward compatability is that ksh no longer supports
'^' as an alternate pipe symbol.

There are ksh aliases that impliment things like 'echo', 'false', 'pwd',
but these would be functionally identical to what the sh user would
expect. Functions from sh are compatable as well.

[ Yes, we actually have ksh here; I am only just starting to use
it myself ]

I would like to see more experience-derived info about the ksh
for the many beginners like myself.
--
Gordon A. Moffett ...!{ihnp4,hplabs,sun}!amdahl!gam

Ihnat

unread,
Mar 15, 1985, 6:58:36 PM3/15/85
to
In his article, Randy King apologetically praises Dave's ksh.
No apology is needed; it's truly an outstanding product, and
deserves whatever praise it gets. While I was on contract at
Bell Labs, I used it extensively; now that my contract is over,
I miss it intensely. But I do have to take exception with the
claim that it's available.

Yes, it now can be bought; but, according to the "AT&T Toolchest",
which I called just to make sure I'm not mistaken, it's $2000 per site for
a source license, and $20000 for a vendor license for object
redistribution. Also, not mentioned by the Toolchest, but certified
as applicable by another source, is that you must have a System V
source license to buy the source.

I'm sorry, but I hate to break it to AT&T that most sites don't need or
want System V source licenses. Many purchase a machine for which a
vendor has done the port; they can afford the object license, but as
businesses have neither need, desire, nor cash to buy their own source
license--let the vendor fix bugs. Yet, at $20000, the vendors are going
to have to charge a substantial sum to recoup their loss on the ksh
source. Try to explain to a bursar or comptroller why you want to spend
hundreds to thousands of dollars on a new shell--I dare you. The fact
of the matter is that, whether we like it or not, it'll be darn hard
to justify significant cash expenditure for a tool which will replace
a tool which is currently doing the job, be it 'sh' or 'csh'.

The same applies for the honey-danber uucp package (which, I was surprised
to note, is *not* offered on the Toolchest menu). Apparently, $2000/object
license (could someone verify--is that per *machine*, or *organization*?
In any case, it's extreme). Again, try to justify that type of cash
outlay to an organization which has a tool that works already. Yes, I
have to nurse it, watch it, and beat on it--but I'm already doing that,
and we're getting our mail and uucp traffic, sooner or later.

All of the preceeding totally ignores the fact that the number of Venix-
and Xenix-based small Unix(Tm) systems, owned by both individuals and
businesses, is huge, and that AT&T is agressively marketing the 3B2.
Obviously, the average individual cannot afford a source license, or
a $2000 object license, or...

Finally, I question the propriety of overcharging in the extreme for the
practice of, effectively, offering corrected versions of products which are
*already* provided with the existing software, but are so bug-ridden as
to be apocryphal.

No...I don't think that ksh (or, for that matter, honey-danber uucp) is
really available to Unix users yet. As I said before, I applaud the efforts
of Dave, Pete, Dan, and Brian; "they done good, real good". And I can
understand that it's difficult for AT&T to figure out immediately what
is the best marketing strategy, after so many years as a regulated monopoly.
But, in the end, I'm the one with a Unix machine at work, and one at home,
and can't justify the cash outlay for the tools at work, and can't afford it at
home; and that's the bottom line. If it's not affordable, it's not
available.

Unix is a trademark of AT&T Bell Telephone Laboratories; probably AT&T
Toolchest, as well.

The opinions expressed herein are solely my own, and in no way necessarily
reflect the opinions, attitudes, or policies of my employer.

--
Dave Ihnat
Analysts International Corporation
(312) 882-4673
ihnp4!aicchi!ignatz

Doug Gwyn <gwyn>

unread,
Mar 17, 1985, 2:38:51 PM3/17/85
to
AT&T is clearly following the lead of other software mass marketers
in expecting "VARs" to be the redistributers of their products.
It is indeed unfortunate that many of the people who helped make
UNIX a commercial success are getting squeezed by the pricing.
Any constructive suggestions that AT&T could seriously consider?

Ephrayim J. Naiman

unread,
Mar 19, 1985, 11:28:43 PM3/19/85
to
<munch, munch>

I've been using the ksh for about a year now and find that it saves
me about 50-70% of the time I used to spend typing at the command line.
So .... throw my vote in for a YES on the ksh.
--

==> Ephrayim J. Naiman @ AT&T Information Systems Laboratories (201) 576-6259
Paths: [ihnp4, allegra, ahuta, maxvax, cbosgd, lzmi, ...]!pegasus!naiman

Ephrayim J. Naiman

unread,
Mar 19, 1985, 11:49:35 PM3/19/85
to

Newsgroups: net.followup,net.unix

Robert P. Cunningham

unread,
Mar 22, 1985, 3:52:52 PM3/22/85
to
> It is indeed unfortunate that many of the people who helped make
> UNIX a commercial success are getting squeezed by the pricing.
> Any constructive suggestions that AT&T could seriously consider?

Perhaps AT&T leadership will once again see the wisdom in helping to
support U.S. higher education, and consider giving software such as ksh
to universities ... and incidentally gaining a $2,000 per-gift tax
deduction.
--
Bob Cunningham ..{dual,ihnp4,vortex}!islenet!bob
Honolulu, Hawaii

0 new messages