summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xsrc/makecolumns.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/makecolumns.sh b/src/makecolumns.sh
index e270e18..04806fb 100755
--- a/src/makecolumns.sh
+++ b/src/makecolumns.sh
@@ -207,7 +207,7 @@ handle_new_format() {
207 207
208 for col in 1 2 3 4 5 6 7 8 9 10; do 208 for col in 1 2 3 4 5 6 7 8 9 10; do
209 printf "%d, " $(( col + 1 )) 209 printf "%d, " $(( col + 1 ))
210 jot -w "file_%05X" - ${col} ${rows} 11 | xargs cat | tr '\n\0' '\t\n' > column_${col} 210 jot -w "file_%05X" - ${col} $(( rows - 1 )) 11 | xargs cat | tr '\n\0' '\t\n' > column_${col}
211 done 211 done
212 printf "done.\n" 212 printf "done.\n"
213 213