terminology/tests/cup.sh

41 lines
691 B
Bash
Raw Permalink Normal View History

2018-12-24 09:22:30 -08:00
#!/bin/sh
# fill space with E
2018-12-28 08:58:53 -08:00
printf '\033[69;1;1;25;80\044x'
2018-12-24 09:22:30 -08:00
#set color
printf '\033[46;31;3m'
# move to 7; 7
printf '\033[7;7HA'
printf '\033[;8HB'
printf '\033[8HC'
printf '\033[9;HD'
printf '\033[0;0HE'
# set top/bottom margins:
printf '\033[10;20r'
# allow left/right margins
printf '\033[?69h'
# set left/right margins:
printf '\033[5;15s'
# fill margin with @
2018-12-28 08:58:53 -08:00
printf '\033[64;10;5;20;15\044x'
2018-12-24 09:22:30 -08:00
# move
printf '\033[12;19HF'
2019-01-01 11:30:05 -08:00
# Test outside margins
printf '\033[22;22HG'
2018-12-24 09:22:30 -08:00
# set left/right margins:
printf '\033[25;35s'
# fill margin with @
2018-12-28 08:58:53 -08:00
printf '\033[64;10;25;20;35\044x'
2018-12-24 09:22:30 -08:00
# restrict cursor
printf '\033[?6h'
# move
2019-01-01 11:30:05 -08:00
printf '\033[2;2HH'
# Test outside margins
printf '\033[22;22HI'