- 论坛徽章:
- 32
|
回复 11# shintoky
[root@localhost ~]# sed '/key-word/,/^add/{/^add/s/}/special {test}; &/}' i
remote dc-123 { file("/aa/key-word/aa" owner("a") group("b") perm (0640)); };
filter f_dc-123 { host("dc-123") and not match("xyz" value(MSG)); };
add { source(net); filter(f_dc-123); remote(dc-123); special {test}; };
remote dc-124 { file("/aa/non-keyword/aa" owner("a") group("b") perm (0640)); };
filter f_dc-124 { host("dc-124") and not match("xyz" value(MSG)); };
add { source(net); filter(f_dc-124); remote(dc-124); };
[root@localhost ~]# sed '/key-word/,/^add/s/}/special {test}; &/' i
remote dc-123 { file("/aa/key-word/aa" owner("a") group("b") perm (0640)); special {test}; };
filter f_dc-123 { host("dc-123") and not match("xyz" value(MSG)); special {test}; };
add { source(net); filter(f_dc-123); remote(dc-123); special {test}; };
remote dc-124 { file("/aa/non-keyword/aa" owner("a") group("b") perm (0640)); };
filter f_dc-124 { host("dc-124") and not match("xyz" value(MSG)); };
add { source(net); filter(f_dc-124); remote(dc-124); }; |
|