开发者

Regex to match ulimit within bracket portion

开发者 https://www.devze.com 2023-02-28 12:37 出处:网络
Here is the output. core file size(blocks, -c) 0 data seg size(kbytes, -d) unlimited scheduling priority(-e) 0

Here is the output.

core file size          (blocks, -c) 0
data seg size           (kbytes, -d) unlimited
scheduling priority             (-e) 0
file size               (blocks, -f) unlimited
pending signals                 (-i) 104448
max locked memory       (kbytes, -l) 32
max memory size         (kbytes, -m) unlimited
open files                      (-n) 1024
pipe size            (512 bytes, -p) 8
POSIX message queues     (bytes, -q) 819200
real-time priority              (-r) 0
stack size              (kbytes, -s) 10240
cpu time               (seconds,开发者_StackOverflow中文版 -t) unlimited
max user processes              (-u) 16320
virtual memory          (kbytes, -v) unlimited
file locks                      (-x) unlimited

I want to have a regex that matches all the (blocks, -c), (kbytes, -d), (-e) and so on... from each line.


You could try a regex like the following:

\([a-z\s\d,-]+\)
0

精彩评论

暂无评论...
验证码 换一张
取 消