How to get the full name of a linux command.
For example:
ls = list
cat = concatenate
man = manual
The full names of the above can be seen from manual
.
So, how to get the full name of tee
? From manual
and info page
, we can’t tell what the full name of tee
is. .
So how do you find the full names of other commands? Is there a certain way?
Command names in Linux are not necessarily the abbreviation of a certain word or phrase.
For example,
awk
is the first letter of the names of the three authors of this language;awk
是这款语言三名作者名字的首字母;而
tee
则来自于T
Andtee
comes fromT
, which is a term for line workers. Represents a T-shaped pipeline splitter.tee
就是T
, that is, the three-way pipeWhat is written in man may be more appropriately called origin
You can refer to What does {some strange unix command name} stand for?. It has the meaning of
awk
,grep
,tee
and other strange command names.If you think about it the other way around, you will know that the full name is not listed because tee is already the full name.