This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# some terminals need echo -e, others don't understand it | |
_ECHO_OPT="" | |
#_ECHO_OPT="-e" | |
# another terminal doesn't understand \x1b but \033 works | |
#_ESC="\x1b" | |
_ESC="\033" |