使用bash脚本在文本文件中写入输入/操作值

时间:2012-08-25 19:28:07

标签: regex bash

我的bash脚本中有一行可以计算值并显示在屏幕上。让我们说,

Adder $a $b

我想在文本文件中打印Adder返回的值。我该怎么做?

假设加法器运行了几个循环。

1 个答案:

答案 0 :(得分:1)

尝试将其用于tee

Adder $a $b | tee output.txt

http://linux.die.net/man/1/tee