Files
konsole/tests/features/sgr2-8-9-53.sh
Martin T. H. Sandsmark 8bf30d3df1 clean up manual tests
2021-07-30 22:56:43 +00:00

26 lines
534 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 --
#
# faint intensity support (SGR 2)
# conceal support (SGR 8)
# strikeout support (SGR 9)
# overline support (SGR 53)
# echo 'D\e[2mD\e[9mD\e[53mD\e[8mD'
echo ""; echo ""
echo " faint concel strikeout overline"
#for fg in 30 31 32 33 34 35 36 37 39
for fg in 30
do
for bg in 40 41 42 43 44 45 46 47 49
do
for sgr in 2 8 9 53
do
l1="${l1}[${fg};${bg};1m XX "
l1="${l1}[${fg};${bg};${sgr}m XX "
done
l1="${l1}\n"
done
echo "$l1"
done