On Sun, 2013-02-24 at 21:08 +0000, Pete Biggs wrote:
> > What would be the diff:
> > 
> > [guru@tiny ~]$ CAMEL_DEBUG=all env | fgrep CAM
> > CAMEL_DEBUG=all
> > [guru@tiny ~]$ env CAMEL_DEBUG=all | fgrep CAM
> > CAMEL_DEBUG=all

As Pete points out, your use of env is misleading you.

Compare these (closer to what you're really doing):

  ~$ env | grep CAMEL_DEBUG

  ~$ CAMEL_DEBUG=all sh -c 'echo CAMEL_DEBUG=$CAMEL_DEBUG'
  CAMEL_DEBUG=all

  ~$ sh -c 'echo CAMEL_DEBUG=$CAMEL_DEBUG' CAMEL_DEBUG=all
  CAMEL_DEBUG=


_______________________________________________
evolution-list mailing list
evolution-list@gnome.org
To change your list options or unsubscribe, visit ...
https://mail.gnome.org/mailman/listinfo/evolution-list

Reply via email to