将 grep 的结果作为命令执行

Execute the result of grep as a command

我从文件中 grep 命令,我想通过管道执行它们?有人有想法吗?

cat README | grep source 

给出source myEnv.sh

您可以用反引号将命令括起来:

$ `cat README | grep source`