Eric E. Snyder (eesnyder at sequana.com) wrote:
> I am trying to incorporate some GCG programs into a perl script
> but some really obvious tricks don't seem to work like one would
> expect because GCG appears to lack the notion of 'stdout'.
> For example:
> $data = `fetch -D accno`;
> doesn't work because fetch tries to make things easy for you by
> creating a file with a name based on the accession number.
> $data = `fetch -d accno -OUT=Term`;