Kevin Fetter asked, >Does anyone know of a program that will remove tle's based on there norad >numbers. I'm not sure I understand what you're asking, but if it's to remove certain tles from a file, sed works and is convenient: sed '/^[12] NNNNN/d' old.tle > new.tle Repeat as necessary.