get_flat_cells [get_objects_by_location -within [get_attribute [get_placement_blockages pb_0] bbox]]
The above command is used to get cells from particular location.
How to get only the cells whose number of pins are greater than 6
--
Pruthvi
I assume you're using IC compiler.
You just need to add "-filter {number_of_pins > 6}" at the end of the command:
get_flat_cells [get_objects_by_location -within [get_attribute [get_placement_blockages pb_0] bbox]] -filter {number_of_pins > 6}