File indexing completed on 2024-04-28 05:51:05

0001 #!/bin/sh --
0002 #
0003 # display ANSI colours and test bold/blink attributes
0004 # orginates from Eterm distribution
0005 #-------------------------------------------------------------------------
0006 
0007 echo ""; echo ""
0008 echo "     40  41  42  43  44  45  46  47  49"
0009 for fg in 30 31 32 33 34 35 36 37 39
0010 do
0011     l1=" $fg ";
0012     l2=" $fg ";
0013     for bg in 40 41 42 43 44 45 46 47 49
0014     do
0015         l1="${l1}[${fg};${bg}m xx "
0016         l2="${l2}[${fg};${bg};1m XX "
0017     done
0018     echo "$l1"
0019     echo "$l2"
0020 done