index
:
dotfiles
master
My Dotfiles
Nathan Reiner <nathan@nathanreiner.xyz>
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
.local
/
bin
/
printcolors
blob: 07f8663ef232dfb93ece878a1fd294c17a33bda6 (
plain
)
1
2
3
4
#!/bin/bash
for
((
i
=
0
;
i
<
256
;
i++
))
;
do
printf
"
$(
tput
setaf
$i
)
$i
$(
tput
sgr0
)
"
;
done