diff options
-rwxr-xr-x | makecolumns.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/makecolumns.sh b/makecolumns.sh index bdb04b3..8b14dd7 100755 --- a/makecolumns.sh +++ b/makecolumns.sh | |||
@@ -380,8 +380,8 @@ JOT () { | |||
380 | *BSD|Darwin) | 380 | *BSD|Darwin) |
381 | jot -w "$1" - "$2" "$3" "$4" | 381 | jot -w "$1" - "$2" "$3" "$4" |
382 | ;; | 382 | ;; |
383 | Linux) | 383 | *) |
384 | seq -f "$1" "$2" "$4" "$3" | 384 | for x in `seq "$2" "$4" "$3"`; do printf "$1" "$x"; done |
385 | ;; | 385 | ;; |
386 | esac | 386 | esac |
387 | } | 387 | } |