On Sun, Jun 25, 2006 at 03:42:54PM -0500, Bo Peng wrote: > Index: src/graphics/GraphicsConverter.C > =================================================================== > --- src/graphics/GraphicsConverter.C (revision 14212) > +++ src/graphics/GraphicsConverter.C (working copy) > @@ -161,14 +161,22 @@ > > // The conversion commands are stored in a stringstream > ostringstream script; > - script << "#!/bin/sh\n"; > + script << "#!/use/bin/env python\n"
Shouldn't this be "#!/usr/bin/env python\n" ? I agree that it dosn't matter as the shebang mechanism is never actually used, but... > +/* > +A typical script looks like: > + > +#!/use/bin/env python Ditto. > +import os, sys > + -- Enrico