I'm playing around with Flightgear and I'd like a way to launch /Applications/FlightGear.app from a Python script with a specific aircraft, but it's not accepting additional parameters.
This works:
os.system("open /Applications/FlightGear.app/Contents/MacOS/fgfs")
This does, but does not select the aircraft... I've tried both with and without hyphens in front of 'aircraft'.
os.system("open /Applications/FlightGear.app/Contents/MacOS/fgfs --args aircraft=777-200ER")
For references,

(source: flightgear.org)