04-19-2007, 06:54 PM
Is there a way to use the out command without issuing a newline? I'm looking for something like a "-n" flag that would do something like this:
out -n "1"
out -n "2"
out "3"
which would produce the output:
123
Actually my goal here is to write out a big database as a tab-delimited text file that can be imported by Excel. I tried to build an enormous string variable that I could then write out with setfile, but I believe my database got too big to hold in a single string variable, so now I'm looking for another way to do it.
out -n "1"
out -n "2"
out "3"
which would produce the output:
123
Actually my goal here is to write out a big database as a tab-delimited text file that can be imported by Excel. I tried to build an enormous string variable that I could then write out with setfile, but I believe my database got too big to hold in a single string variable, so now I'm looking for another way to do it.