diff options
Diffstat (limited to 'etc/functions/colortable')
-rw-r--r-- | etc/functions/colortable | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/functions/colortable b/etc/functions/colortable index fadd7a7..ab46eb4 100644 --- a/etc/functions/colortable +++ b/etc/functions/colortable @@ -2,7 +2,7 @@ ## print a table with all 256 color codes for i in {0..255}; { - printf " %s%-3s" $'\e[38;5;'${i}m $i + printf " %s%-3s" $'\e[38;5;'${i}m ${i} (( (i+1) % (COLUMNS/4) < 1 )) && echo } echo |