Encyclopedia  |   World Factbook  |   World Flags  |   Reference Tables  |   List of Lists     
   Academic Disciplines  |   Historical Timeline  |   Themed Timelines  |   Biographies  |   How-Tos     
Your Ad Here
Sponsor by The Tattoo Collection


Unix philosophy
Main Page | See live article | Alphabetical index

Unix philosophy

The Unix philosophy is a set of cultural norms and philosophical approaches to developing software systems based on the experience of leading developers of the Unix operating system. Many individuals have examined these norms and tried to summarize them in some way.

Table of contents
1 McIlroy: A Quarter Century of Unix
2 Pike: Notes on Programming in C
3 Gabriel: Worse is Better
4 Raymond: The Art of Unix Programming
5 References
6 See also

McIlroy: A Quarter Century of Unix

Doug McIlroy, the inventor of Unix pipes and one of the founders of the Unix tradition, summarized the philosophy in Peter H. Salus' A Quarter Century of Unix as follows:

"This is the Unix philosophy: Write programs that do one thing and do it well.
Write programs to work together.
Write programs to handle text streams, because that is a universal interface."

This has been summarized as "Do one thing, do it well."

Pike: Notes on Programming in C

Rob Pike, a leading expert on applying the C programming language, offers the following "rules" in Notes on Programming in C as programming maxims (but they can be easily viewed as points of a Unix philosophy):

Pike's rules 1 and 2 restate Donald Knuth's famous maxim, "Premature optimization is the root of all evil." Ken Thompson rephrased Pike's rule 4 as "When in doubt, use brute force." Rule 5 was previously stated by Fred Brooks in The Mythical Man-Month.

Gabriel: Worse is Better

Richard P. Gabriel suggests that a key advantage of Unix was that it embodied a style of design (a philosophy) he termed Worse is better. In the "Worse is better" design style, simplicity of both the interface and the implementation is more important than any other attribute of the system — including correctness, consistency, and completeness. Gabriel argues that this design style has key evolutionary advantages, though he questions the quality of some results.

Raymond: The Art of Unix Programming

Eric S. Raymond, in his book The Art of Unix Programming, summarizes the Unix philosophy as the widely-used engineering philosophy, "Keep it Simple, Stupid" (KISS Principle). He then describes how he believes this overall philosophy is applied as a cultural Unix norm:

Certainly many of these norms are accepted outside of the Unix community — if not when Unix first used them, at least later on. Also, many were not unique or originally appearing in the Unix community. Nevertheless, those who have learned to use Unix at master level tend to accept the combination of these ideas as being the foundation of the Unix style.

References

See also