Search Results

Search: Posts Made By: notimenocall
2,892
Posted By RudiC
There you are - DOS line terminators (<CR> = \r =...
There you are - DOS line terminators (<CR> = \r = ^M = 0x0D). Those cause the combined lines to wrap back to the left margin for every column. The idiosyncratic output seen in post #3 comes from the...
2,892
Posted By Don Cragun
What happens if you try: for i in *.tsv do tr...
What happens if you try:
for i in *.tsv
do tr -d '\r' < "$i" > "$i.nocr"
done
paste *.nocr | head
2,892
Posted By Don Cragun
I agree with RudiC that we need to see the first...
I agree with RudiC that we need to see the first few lines of your input files. From the output you have shown us, it would seem that the most crucial would be:
for file in *.tsv
do echo "File:...
Showing results 1 to 3 of 3

 
All times are GMT -4. The time now is 09:32 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy