如何连接comment + bash alias命令调用?

时间:2012-12-24 07:29:52

标签: macos bash shell ip

我正在尝试打印我的IP地址以及前面的评论。我不知道如何在一行中完成所有工作。

6 alias showip="ifconfig | grep 'inet' | sed -n '5p' | tr -s ' ' | cut -d ' ' -f2"
11 ip=showip
12 ip="ip: $ip"
13 echo ip

我正在寻找的输出是:

ip: 192.168.1.2

谢谢一群人。

printf 'ip: %s\n' $(showip)

更新:问题已解决

1 个答案:

答案 0 :(得分:1)

我不确定我理解你的问题,但你可能正在寻找:

printf 'ip: %s\n' $(ifconfig | grep 'inet' | sed -n '5p' | tr -s ' ' | cut -d ' ' -f2)