Wie drucke ich ein 256-Farben-Testmuster in meinem Terminal?
Ich möchte überprüfen, ob mein Terminal 256 Farben korrekt unterstützt.
Antwort1
256-Farben-Testmuster
Um das folgende Bild zu erhalten, verwenden Sie:
curl -s https://gist.githubusercontent.com/HaleTom/89ffe32783f89f403bba96bd7bcd1263/raw/e50a28ec54188d2413518788de6c6367ffcea4f7/print256colours.sh | bash
DerWesentlicher Inhalt bash
/ zsh
CodeIstshellcheck
sauber und unterstützt auch „Schau mal, Mama, keine Unterprozesse!“.
Alternativ, für den bash
Quickie:
for i in {0..255} ; do
printf "\x1b[48;5;%sm%3d\e[0m " "$i" "$i"
if (( i == 15 )) || (( i > 15 )) && (( (i-15) % 6 == 0 )); then
printf "\n";
fi
done
Für den totalen Overkill ist der Urvater des Ganzen terminal-colors
ein572-zeiliges Skriptmit mehrerenAusgabeformate.
Du kannst auchDrucken Sie ein Echtfarben-Testmuster (24 Bit).
Antwort2
Ich habe einen ... gefundenschönes Python-Skript dafür auf GitHubgeschrieben von Justin Abrahms, der auch die Hex-Codes der Farben druckt.
Laden Sie das Skript in das aktuelle Arbeitsverzeichnis herunter
wget https://gist.githubusercontent.com/justinabrahms/1047767/raw/a79218b6ca8c1c04856968d2d202510a4f7ec215/colortest.py
erteilen Sie ihm die Ausführungsberechtigung
chmod +x colortest.py
Starte es:
./colortest.py
Hier ist das vollständige Skript für den Fall von Link-Rot:
#!/usr/bin/env python
# Ported to Python from http://www.vim.org/scripts/script.php?script_id=1349
print "Color indexes should be drawn in bold text of the same color."
print
colored = [0] + [0x5f + 40 * n for n in range(0, 5)]
colored_palette = [
"%02x/%02x/%02x" % (r, g, b)
for r in colored
for g in colored
for b in colored
]
grayscale = [0x08 + 10 * n for n in range(0, 24)]
grayscale_palette = [
"%02x/%02x/%02x" % (a, a, a)
for a in grayscale
]
normal = "\033[38;5;%sm"
bold = "\033[1;38;5;%sm"
reset = "\033[0m"
for (i, color) in enumerate(colored_palette + grayscale_palette, 16):
index = (bold + "%4s" + reset) % (i, str(i) + ':')
hex = (normal + "%s" + reset) % (i, color)
newline = '\n' if i % 6 == 3 else ''
print index, hex, newline,
Antwort3
Obwohl nichtganzein "Testbild", ich habexterm-Farbauswahl:
Antwort4
Ein Einzeiler
Hintergrundfarbe
for i in {0..255}; do printf '\e[48;5;%dm%3d ' $i $i; (((i+3) % 18)) || printf '\e[0m\n'; done
Vordergrundfarbe
for i in {0..255}; do printf '\e[38;5;%dm%3d ' $i $i; (((i+3) % 18)) || printf '\e[0m\n'; done