12 lines
189 B
Bash
Executable File
12 lines
189 B
Bash
Executable File
#!/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
|
|
|