HP3000-L Archives

September 2000, Week 4

HP3000-L@RAVEN.UTC.EDU

Options: Use Monospaced Font
Show Text Part by Default
Show All Mail Headers

Message: [<< First] [< Prev] [Next >] [Last >>]
Topic: [<< First] [< Prev] [Next >] [Last >>]
Author: [<< First] [< Prev] [Next >] [Last >>]

Print Reply
Subject:
From:
Dennis Handly <[log in to unmask]>
Reply To:
Dennis Handly <[log in to unmask]>
Date:
Sat, 23 Sep 2000 15:08:51 -0600
Content-Type:
text/plain
Parts/Attachments:
text/plain (14 lines)
Jeff Woods ([log in to unmask]) wrote:
: (Personally I prefer to use the Korn shell when available so it would
: be nice to see it on MPE.)

Do you actually know of the minor difference between Posix and Korn?

One I recently noticed is that the Posix shell won't let you have the
"&" before the ";".

   for i in * ; do command-foo $i & ; done

Looks like you need:
   for i in * ; do { command-foo $i & } ; done

ATOM RSS1 RSS2