当前位置: 技术问答>linux和unix
怎样用shell读取properties里面特定键对应的值?
来源: 互联网 发布时间:2016-09-23
本文导语: 怎样用shell读取properties里面特定键对应的值。 例如: my.properties: key1=value1 key2=value2 ........ 我想得到my.properties里key2对应的值,怎样实现? | v=`grep key2 my.properties|cut -d'=' -f2` | ...
怎样用shell读取properties里面特定键对应的值。
例如:
my.properties:
key1=value1
key2=value2
........
我想得到my.properties里key2对应的值,怎样实现?
例如:
my.properties:
key1=value1
key2=value2
........
我想得到my.properties里key2对应的值,怎样实现?
|
v=`grep key2 my.properties|cut -d'=' -f2`
|
sed -n '/key2/{s/.*=//;p}' urfile
|
awk -F'=' '{if($1~/key2/) print $2}' yourfile
|
awk -F= '/key2/{print $2}' urfile