Re: Unix tip for oracle

2003-03-18 Thread Brian_P_MacLean
To setup your environment add the following to your .profile or script.ksh export BELL=`tput bel 2>/dev/null` export BOLD=`tput bold 2>/dev/null` export BLINK=`tput blink 2>/dev/null` export PLAIN=`tput sgr0 2>/dev/null` export UNDERLINE_ON=`tput smul 2>/dev/null`

RE: Unix tip for oracle

2003-03-18 Thread Brian Dunbar
-Original Message- Sent: Tuesday, March 18, 2003 4:34 PM To: Multiple recipients of list ORACLE-L Working on an wrapper for Oracle functionality. Any of the Unix guru's know if you can highlight or set text blinking in the korn shell in unix? Brian - "It'd be an abomination!

Re: Unix tip for oracle

2003-03-18 Thread Arup Nanda
I'm no unix guru; but I know this. Place the text to be highlighted inside the strings ^[[7m and ^[[0m. the ^[ character is typed by a Control-V followed by a Control-[. for instance place the text to be highligted "Oracle" as ^[[7mOracle^[[0m HTH. Arup - Original Message - To: "Multipl

Re: Unix tip for oracle

2003-03-18 Thread Jared . Still
You might want to read up on tput. Jared "Spears, Brian" <[EMAIL PROTECTED]> Sent by: [EMAIL PROTECTED] 03/18/2003 02:33 PM Please respond to ORACLE-L To: Multiple recipients of list ORACLE-L <[EMAIL PROTECTED]> cc: Subject:Unix tip for oracle Work