Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to have a large policy in KSH Script

Status
Not open for further replies.

benhurtec

Programmer
Jan 19, 2006
3
CA
I want to have a large policy in KSH script.

Someone can help me?

I know how to do a bold

bold=`tput bold`
offbold='tput sgr 0 0'
echo "${bold}Name: ${offbold} \c"

But i don't know how to do a large character...
 
Check if swidm and rwidm are defined for your TERM in the terminfo database.

Hope This Helps, PH.
Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ181-2886
 
Is this what you're looking for?

tput swidm # to enter double wide mode
tput rwidm # to leave double wide mode


HTH,

p5wizard
 
Thank you, On the other hand, I tested and it's not ok. The characters remained same size. I wonder whether it is because I do not have a version of AIX which allows it…?
 
...or it is not defined for your terminal type in the AIX terminfo database, or your terminal type doesn't support it.


HTH,

p5wizard
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top