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.
我需要执行管道的结果,但不使用临时文件(pid 需要保持不变……该死的回归系统)。
因此,如果我有一个包含以下内容的测试文件:
echo Do this
我理想地想要运行类似的东西:
cat test_file | eval
这将返回:
Do this
试试这个:
eval `cat test_file`
但要注意代码注入。