Combinator - how to save combined files.
#2
I assume that you know that you could just regenerate them when you need them, and save the disk space. Smile

But saving general command output to a file is an OS/commandline thing - just basic redirection.

Code:
$ cat - >test1.txt
test
$ cat - >test2.txt
this
that
$ combinator test1.txt test2.txt >output.txt
$ cat output.txt
testthis
testthat
~


Messages In This Thread
RE: Combinator - how to save combined files. - by royce - 07-07-2018, 12:02 AM