你将如何生成.txt文件

时间:2015-08-08 07:44:09

标签: unix command text-files

我有一个使用“套房”O(n)的脚本。基本上是一种生成可能字符串的线性算法。

这就像是图式化

X = result
x from 1 to x max
y = x max

这是可能的字母数字字符结果链。

我希望在一个.txt文件中转换脚本的结果(将生成所有可能的字符串)

1 个答案:

答案 0 :(得分:0)

首先,您必须从脚本中输出所需内容。类似的东西:

echo $VARIABLE

然后保存脚本的输出

./yourscript.sh > a.txt

附加到文件

./yourscript.sh >> a.txt