selinux-policy/refpolicy/support/get_type_attr_decl.sed

13 lines
197 B
Sed
Raw Normal View History

#n
# print out type and attribute declarations that
# are not inside require blocks.
/require \{/,/} # end require/b nextline
/^[[:blank:]]*(attribute|type) /{
s/^[[:blank:]]+//
p
}
:nextline