[net.misc] Codes for Lear Siegler adm5

mr@isrnix.UUCP (michael regoli) (02/10/85)

Question:  What code is required to completely turn the screen into
           reverse video?

	   For example:  echo -n ^[G

	        Turns the adm5's cursor line into reverse video.

	   On Televideo 925's - the code to turn the *entire* screen
	        into reverse video is:

			echo -n ^[b

		To turn the screen into "standard" video:

			echo -n ^[d

	   Therefore, on the TV's, a shell script:

		>	while true
		>	do
		>		echo -n ^[b
		>		echo -n ^[d
		>	done

           will make the screen flash widly.

I want this for the adm5!

	(* NOTE:  For obvious reasons, I have shown the escape (^[)
		as '^' + '[' so to make them visible to all.)