Subject: Re: sh & IFS
To: Perry E. Metzger <perry@piermont.com>
From: David Laight <david@l8s.co.uk>
List: tech-userlevel
Date: 03/20/2005 20:19:43
On Sun, Mar 20, 2005 at 11:36:09AM -0500, Perry E. Metzger wrote:
> 
> Incidently, at this point, what's left in ksh that isn't in /bin/sh?

If you mean the pdksh that netbsd includes, then at least:
- Arithmetic expressions (( <expression> )) - no leading $
- variable expansion in expressions doesn't need a $
- operators += etc
- Conditional expressiond [[ <expression ]]
- select builtin
- typeset builtin
- print builtin
- variables as arrays
- |& for co-processes
- $(<file) equivalent to $(cat file)
- regex filename patterns
- various options to other builtins
- the inability to run some of my scripts

The list goes on....

	David

-- 
David Laight: david@l8s.co.uk