12 lines
187 B
Plaintext
12 lines
187 B
Plaintext
|
#!/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
|
||
|
|