Difference between Thompson Shell and POSIX Shell
1. Thompson Shell :
Thompson Shell is the first Unix shell which was introduced by Ken Thompson. It was a simple command interpreter which introduced several innovative features to the command-line interface. This command shell led to the development of the later Unix Command shells. It was not designed for scripting. It was developed at AT&T Bell Laboratories. It was released in 1971.
2. POSIX Shell :
POSIX Shell is a command line shell for computer operating system which was introduced by IEEE Computer Society. POSIX stands for Portable Operating System Interface. POSIX Shell is based on the standard defined in Portable Operating System Interface (POSIX) – IEEE P1003.2. It is considered as one of the primary shell in scripts. It was released in 1992.
Difference between Thompson Shell and POSIX Shell :
S.No. | THOMPSON SHELL | POSIX SHELL |
---|---|---|
1. | It was developed by Ken Thompson at AT&T Bell Laboratories. | It was developed by IEEE Computer Society. |
2. | It was released in 1971. | It was released in 1992. |
3. | It is the first Unix shell. | It is one of the primary shell. |
4. | Its usual environment is Unix. | It usual environment is POSIX. |
5. | It does not have license. | It has IEEE standard license. |
6. | It does not have unicode support. | It current version has unicode support. |
7. | It does not have stream redirection. | It has stream redirection for arbitrary fds. |
8. | It is used as command line interpreter only. | It is used as command line interpreter as well as scripting language. |
9. | It does not have command history. | It current version has command history. |
10. | It does not have value prompt. | It has value prompt. |
Please Login to comment...