More is less
The Endeavour 2024-04-16
When I first started using Unix, I used a program called “more” to read files. The name makes sense because each time you press the space bar, more
will show you more of your file, one screen at a time.
Now everyone uses less
, and more
is all but forgotten.
Daniel Halbert wrote more
in 1978. Mark Nudelman a similar program with more functionality in 1984 which he named less
. The name was a pun on the aphorism “less is more” [1]. Soon less
completely replaced more
.
I’m curious why I ever used more
, since less
had taken over before I touched Unix. One possibility is that someone who was accustomed to more
showed me that command. Another possibility is that I learned it from reading The Unix Programming Environment which came out in November 1983. It includes more
but not less
.
My laptop contains executables for more
and less
in /usr/bin
. The command
diff less more
returns nothing, indicating that the binaries are identical: less
literally is more
.
My desktop has distinct binaries for less
and more
. The more
binary is much smaller, and so I assume it is limited to the original functionality of more
, more or less.
Related posts
- Less isn’t more. Just enough is more.
- More data, less accuracy
- More theoretical power, less real power
[1] I don’t know who coined the phrase “less is more,” but it is associated with architect Ludwig Mies van der Rohe (1886–1969) who often quoted it. He did not apply the principle to is own name, however. He was born Ludwig Mies and later appended van der Rohe.
The post More is less first appeared on John D. Cook.