Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
为什么export在命令管道中用作最后一步时会失败?
export
echo FOO=bar | xargs export # => xargs: export: No such file or directory
我可以用这种方式重写它来完成我想要的:
export `echo FOO=bar`
但是为什么我不能export以第一种方式使用?
export 是一个内置的 shell,xargs 需要一个实际的二进制文件。