如何从grep结果中排除一些单词

时间:2017-02-24 07:47:34

标签: ssh grep

ssh我正在使用命令 ui user | grep UDomain给了我结果

UDomain: test.com

如何排除UDomain:并仅保留

 test.com 

grep sed awk什么对我有用。

谢谢你的帮助。

1 个答案:

答案 0 :(得分:0)

<Command> |grep -oP 'UDomain:.\K.*'

示例:

ui user |grep -oP 'UDomain:.\K.*'

或使用awk

command |awk -F: '/UDomain/{print $2}'

或使用sed

command|sed -r '/UDomain/s/(^.*:)(.*)/\2/g'