Terminal

在終端列印 256 色測試圖案

  • April 16, 2018

如何在終端中列印 256 色測試圖案?

我想檢查我的終端是否正確支持 256 色。

256色測試圖案

256色測試圖案

對於以上內容,您可以使用我的 bash 程式碼。(“看馬,沒有子程序!”)

或者快速的 bash:

for i in {0..255} ; do
   printf "\x1b[38;5;${i}m%3d " "${i}"
   if (( $i == 15 )) || (( $i > 15 )) && (( ($i-15) % 12 == 0 )); then
       echo;
   fi
done

24 位/真彩色測試圖案

請參閱此問題以了解全部內容:)

安裝一個名為colortest

並使用以下命令測試 ASCII 顏色圖

colortest-8   => Display color palette using 8 colors.
colortest-16  => Display color palette using 16 colors.
colortest-256 => Display color palette using 256 colors.

引用自:https://unix.stackexchange.com/questions/308094