码迷,mamicode.com
首页 > 系统相关 > 详细

ubuntu下仅仅获取网卡一的ip地址 && shell中字符串拼接

时间:2015-04-22 20:17:12      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:

问题描述:

  ubuntu下仅仅获取网卡一的ip地址

问题背景:

  eth0,eth1,eth2……代表网卡一,网卡二,网卡三……

  lo代表127.0.0.1,即localhost

 

sudo ifconfig eth0 | grep inet addr | cut -d : -f 2 | cut -d   -f 1

 

问题描述:

  已知字符串str1, str2, 拼接str1和str2,结果为str3

  

str1=hello
str2=world
str3="$str1 $str2"
echo $str3

 

ubuntu下仅仅获取网卡一的ip地址 && shell中字符串拼接

标签:

原文地址:http://www.cnblogs.com/lasclocker/p/4448419.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!