I would like to accomplish the following:
I have firewall rules as follows (example):
/ip firewall rule test
add src-address=10.10.10.10/32 action=drop comment="ACCEPT me"
add action=drop comment="DROP the rest"
What I would like to do is use find to allow me to manipulate only those items in the list that have "DROP" in the comment. I will not have the full text of the comments, as they are different, but ALL will have a common portion (i.e.: DROP or ACCEPT). I looked in the scripting manual, but could not get much beyond the fact that it seems possible. Any insights?