Reading Note: The Unix philosophy

2022-04-24softwareoperating-system

The Unix philosophy emphasizes building simple, short, clear, modular, and extensible code that can be easily maintained and repurposed by developers other than its creators. The Unix philosophy favors composability as opposed to monolithic design.

Douglas McIlroy is one of the Unix developers. He wrote several famous command-line utilities: spell, diff, sort, join, graph, speak, and tr

McIlroy summarized the best practices of software development for Unix in the following points:

Read more