Английская Википедия:Hamilton C shell
Hamilton C shell is a clone of the Unix C shell and utilities[1][2] for Microsoft Windows created by Nicole Hamilton[3] at Hamilton Laboratories as a completely original work, not based on any prior code. It was first released on OS/2 on December 12, 1988[4][5][6][7][8][9] and on Windows NT in July 1992.[10][11][12] The OS/2 version was discontinued in 2003 but the Windows version continues to be actively supported.
Design
Hamilton C shell differs from the Unix C shell in several respects. These include its compiler architecture, its use of threads, and the decision to follow Windows rather than Unix conventions.[8][9]
Parser
The original C shell uses an ad hoc parser. This has led to complaints about its limitations. It works well enough for the kinds of things users type interactively but not very well for the more complex commands a user might take time to write in a script. It is not possible, for example, to pipe the output of a foreach statement into grep. There was a limit to how complex a command it could handle.[13]
By contrast, Hamilton uses a top-down recursive descent parser that allows it to compile statements to an internal form before running them.[1][8] As a result, statements can be nested or piped arbitrarily.[6] The language has also been extended with built-in and user-defined procedures, local variables, floating point and additional expression, editing and wildcarding operators, including an "indefinite directory" wildcard construct written as "...
" that matches zero or more directory levels as required to make the rest of the pattern match.[14]
Threads
Lacking fork or a high performance way to recreate that functionality, Hamilton uses the Windows threads facilities instead.[6][8] When a new thread is created, it runs within the same process space and it shares all of the process state. If one thread changes the current directory or the contents of memory, it's changed for all the threads. It's much cheaper to create a thread than a process but there's no isolation between them. To recreate the missing isolation of separate processes, the threads cooperate to share resources using locks.[15]
Windows conventions
Hamilton differs from other Unix shells in that it also directly supports Windows conventions for drive letters, filename slashes, escape characters, etc.[9]
References
External links
- ↑ 1,0 1,1 Early Шаблон:Cite book
- ↑ Шаблон:Cite journal
- ↑ The author has discussed her transition from Douglas Hamilton on a panel discussion at Stanford, beginning at 29:37. Шаблон:Cite AV media
- ↑ Шаблон:Cite journal
- ↑ Шаблон:Cite journal
- ↑ 6,0 6,1 6,2 Шаблон:Cite journal
- ↑ Шаблон:Cite journal
- ↑ 8,0 8,1 8,2 8,3 Шаблон:Cite journal
- ↑ 9,0 9,1 9,2 Шаблон:Cite journal
- ↑ Hamilton C shell for Windows Release Notes 4.0, retrieved July 28, 2016.
- ↑ Шаблон:Cite newsgroup
- ↑ Шаблон:Cite journal
- ↑ Csh Programming Considered Harmful by Tom Christiansen
- ↑ Шаблон:Cite web
- ↑ Шаблон:Cite newsgroup
- Английская Википедия
- Страницы с неработающими файловыми ссылками
- Unix shells
- OS/2 command shells
- Windows command shells
- Scripting languages
- Unix text processing utilities
- Unix emulators
- Programming tools
- Programming tools for Windows
- Utilities for Windows
- 1988 software
- Programming languages created in 1988
- Страницы, где используется шаблон "Навигационная таблица/Телепорт"
- Страницы с телепортом
- Википедия
- Статья из Википедии
- Статья из Английской Википедии