kde-workspace/konsole/tests/ct2
Ivailo Monev f68295ea28 generic: move sub-projects from kde-baseapps [ci reset]
Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
2022-05-14 21:56:54 +03:00

20 lines
487 B
Bash
Executable file
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/bin/sh --
#
# display ANSI colours and test bold/blink attributes
# orginates from Eterm distribution
#-------------------------------------------------------------------------
echo ""; echo ""
echo " 40 41 42 43 44 45 46 47 49"
for fg in 30 31 32 33 34 35 36 37 39
do
l1=" $fg ";
l2=" $fg ";
for bg in 40 41 42 43 44 45 46 47 49
do
l1="${l1}[${fg};${bg}m xx "
l2="${l2}[${fg};${bg};1m XX "
done
echo "$l1"
echo "$l2"
done