我有一个文件,需要使用Shell脚本按键查找值。该文件如下所示:
HereIsAKey This is the value
我该怎么做:
MyVar=Get HereIsAKey
然后MyVar应该等于“这是值”。键没有空格,并且值应为键之后的空格之后的所有内容。
如果HereIsAKey文件中唯一,请尝试使用grep:
HereIsAKey
myVar=$(grep -Po "(?<=^HereIsAKey ).*" file)