12 lines
187 B
Plaintext
Raw Normal View History

2020-05-13 09:01:10 +02:00
#!/bin/bash
# From Arch Wiki (formated)
x="$(tput op)"
y=$(printf %76s)
for i in {0..256}; do
o=00$i
echo -e ${o:${#o}-3:3} "$(tput setaf "$i";tput setab "$i")" "${y// /=}$x"
done