在Ubuntu中打印IP地址的命令不明白

时间:2016-07-18 09:13:47

标签: linux ubuntu ip command-line-interface

这是我第一次使用Linux发行版,我发现--help非常难以使用以便取消以下命令:

ifconfig eth0 | grep inet | awk '{ print $2 }'

有人向我解释一下这个命令的用法是什么吗?英语中|的名称是什么? 感谢

1 个答案:

答案 0 :(得分:2)

名为pipeline<table cellspacing="10px" cellpadding="10px" width="100%" style="border-spacing: 10px"> <tr align="left"> <td> <asp:Label ID="Label0" runat="server" Text="<%$ Resources:Strings, OrderReference %>" /> </td> <td> <asp:Label ID="TRANS_NB_LB" runat="server" /> </td> <td> <asp:Label ID="Label5" runat="server" TabIndex="5" Text="<%$ Resources:Strings, Shipment %>" /> </td> <td> <asp:Label ID="SHIP_COST_LB" runat="server" /> </td> </tr> <tr align="left"> <td> <asp:Label ID="Label1" runat="server" TabIndex="5" Text="<%$ Resources:Strings, OrderAmount %>" /> </td> <td> <asp:Label ID="TRANS_AMOUNT_LB" runat="server" /> </td> <td> <asp:Label ID="Label2" runat="server" TabIndex="5" Text="<%$ Resources:Strings, ShippingMethod %>" /> </td> <td> <asp:Label ID="SHIPP_METH_LB" runat="server" /> </td> </tr> <tr align="left"> <td> <asp:Label ID="Label3" runat="server" TabIndex="5" Text="<%$ Resources:Strings, Date %>" /> </td> <td> <asp:Label ID="TRANS_DATE_LB" runat="server" /> </td> </tr> <tr> <td> <asp:Label ID="Label4" runat="server" TabIndex="5" Text="<%$ Resources:Strings, BillNumber %>" /> </td> <td> <asp:Label ID="SHIP_BILL_NUMBER_LB" runat="server" /> </td> </tr> </table>符号,它是一个操作符,它在左侧发送命令的输出作为右侧命令的输入。

所以基本上,你有3个命令:

|

输出网络上的许多详细信息,然后将该输出发送到:

ifconfig eth0

仅包含包含单词grep inet 的行并将其发送到:

inet

打印出刚刚发过的单词。