UNIX admin <[EMAIL PROTECTED]> wrote:

> Besides, bash is one of the absolute WORST ever shells. There are far
> better shells, namely (pd)ksh, (t)csh, zsh and so on.
>
> Consider this quite rudimentary example:
>
> bash:
> ls -l /tmp/ &; sleep 10
> bash: syntax error near unexpected token `;'
>
> tcsh:
> ls -l /tmp/ &; sleep 2
> [1] 12745
> total 416
> [output omitted for brevity]
> [1]    Done                          ls -l /tmp/

Solaris Bourne shell:
$ ls -l /tmp/ &; sleep 10
syntax error: `newline or ;' unexpected

Solaris Korn shell:
$ ls -l /tmp/ &; sleep 10
ksh: syntax error: `newline or ;' unexpected

pdksh:
$ ls -l /tmp/ &; sleep 10
pdksh: syntax error: `;' unexpected

AT&T ksh93:
$ ls -l /tmp/ &; sleep 10
ksh93: syntax error: `;' unexpected

Your point being? That bash does implement some sort of Bourne/POSIX
shell command language instead of the csh one? Ridiculous.

> There is nothing Solaris or OpenSolaris can learn from Linux. Linux
> is one of the worst pieces of SW in history of Informatics. [...]
> As a former Linux system engineer, I have nothing good to say for
> technical merits of Linux.

How very convincing.

        Gunnar
_______________________________________________
opensolaris-discuss mailing list
opensolaris-discuss@opensolaris.org

Reply via email to