Why does export
fail when used as the last step in a command pipeline?
echo FOO=bar | xargs export
# => xargs: export: No such file or directory
I can rewrite it this way to accomplish what I want:
export `echo FOO=bar`
But why can't I use export
in the first way?