Author: | John Mashey |
Developer: | AT&T Bell Laboratories |
Operating System: | Unix |
Language: | English |
Genre: | Unix shell |
The PWB shell (also known as the Mashey shell) was a Unix shell.[1]
The PWB shell was a modified (and generally constrained to be upward-compatible) version of the Thompson shell with additional features to increase usability for programming. It was maintained by John Mashey and various others (Dick Haight, Alan Glasser).[1] [2] [3]
PWB/UNIX started with Research Unix 4th Edition in mid-October 1973, and was frequently updated over the next few years, as the PWB department tracked Research Unix changes and added a few features. The PWB shell was released in mid-1975 [4] and remained available through Version 6 Unix-based PWB/UNIX.[5] In Version 7 Unix (1979), the PWB shell was superseded by the Bourne shell.[6] The PWB shell was the standard shell for PWB/UNIX, circa 1975–78.,[1] but did not run on any edition of Research Unix, as it required a new system call that let set login name, login directory and TTY so to obtain them.
Several features were introduced in the PWB shell that remain in many later shells. The and commands were made internal to the shell, and extended to allow ---, and and constructs were introduced, as well as to ignore interrupts or catch them to perform cleanup.[1] Simple variables could be used, although their names were limited to one letter and some letters were reserved for special purposes, of which some are the precursors of the environment variables found in all Unix systems from Version 7 onward.
For example, The variable is the ancestor of, used to avoid hard-coding pathnames. The variable is the ancestor of, which let users search for commands in their own choice of directories. Unlike most of the UNIX systems of the time, the original PWB/UNIX computer center was shared by multiple programming groups who could not change the contents of /bin or /usr/bin, but wanted to create their own sets of shared commands. In addition, the shell's command-searching was enhanced to allow shell procedures to be invoked like binary commands, i.e., if the shell found a non-binary file marked executable, it would fork another shell instance to read that file as a shell script. Thus people could type rather than . All this behavior was packaged as the function, which is the ancestor of, to allow any program to invoke commands in the same way as the shell.
The character, used previously for identifying arguments to a shell script, became the marker for dereferencing a variable, and could be used to insert a variable's value into a string in double quotes. (In addition to later shells, this feature would also later appear in the Perl and PHP programming languages.)
These features could not overcome the shortcomings of the Thompson shell, and so a new shell was written from scratch by Stephen Bourne. This Bourne shell was incompatible with the Thompson and PWB shells, but included equivalents of most of the PWB shell's features, but done from scratch, rather than incrementally, with much discussion among the various participants. In particular, environment variables and related machinery were designed by Stephen Bourne, John Mashey, and Dennis Ritchie as a general mechanism to replace the earlier, more limited features. After the adoption of the Bourne shell as the standard shell in Version 7 Unix, use of the PWB shell was phased out, although for a while, there was an internal Bell Labs course called Bourne Shell Programming for Mashey Shell Programmers. The C shell, developed before the public release of the Bourne shell, also inherited some of the features of the PWB shell.