如何通过正则表达式在/ etc / password中选择GID?

时间:2015-10-25 09:12:14

标签: regex bash shell vim

Please see this picture first!

我想在GID中选择/etc/passwd字段。

我使用/:[0-9]\{1,\}选择UID,但我不知道如何选择GID

1 个答案:

答案 0 :(得分:2)

GID是第四个字段,因此您可以使用:

/\([^:]\+:\)\{3}\zs[^:]\+
 ***************###""""""

* matches the first three fields
# starts the actual match from here
" matches 1 or more non-colons

result