我有一個列表:grep來選擇字符串包含特定單詞
/device1/element1/CmdDiscovery
/device1/element1/CmdReaction
/device1/element1/Direction
/device1/element1/MS-E2E003-COM14/Field2
/device1/element1/MS-E2E003-COM14/Field3
/device1/element1/MS-E2E003-COM14/NRepeatLeft
我怎樣才能grep
,這樣只含"Field" followed by digits
或者乾脆NRepeatLeft
在串年底返回的字符串(在我的例子它會是最後三個字符串)?
預期輸出:
/device1/element1/MS-E2E003-COM14/Field2
/device1/element1/MS-E2E003-COM14/Field3
/device1/element1/MS-E2E003-COM14/NRepeatLeft
ERE不是PCRE或Perl,'(:)'是不是一個有效的結構?在ERE。 –