07-07-2018, 12:02 AM
I assume that you know that you could just regenerate them when you need them, and save the disk space.
But saving general command output to a file is an OS/commandline thing - just basic redirection.
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
~