turning off some of the airwires during board layout in EAGL

Hi there,

During the board layout, I want to get rid of the airwires that are connected to GND. Is there any way to do that without turning off the whole “unrouted” layer? Thanks

smdfan

Yes - search the help for the ‘hide’ command. I think that is what it is called.

smdFan:
Hi there,

During the board layout, I want to get rid of the airwires that are connected to GND. Is there any way to do that without turning off the whole “unrouted” layer? Thanks

smdfan

If you have EAGLE version 5.x (5.4, 5.7, etc), then enter on the command line: ``` rat ! 'GND' ``` Note the use of the "!" char to hide an airwire. To show the GND airwires again enter: ``` rat 'GND' ```

^WOW! Nice tip. Where can I learn more command line stuff?

HELP / CONTROL PANEL / EDITOR COMMANDS

Thank you Sir!