Shell Script To Display The Text Entered By The User in Bold
June 13th, 2013 |
|
0 Comments »
Write a shell script to display the text entered by the user in bold?
You need to use the tput utility to display text in bold. It uses the terminfo database to make the values of terminal-dependent capabilities and information available to the shell, to initialize or reset the terminal, or return the long name of the requested terminal type. tput bold turns on bold (extra bright) mode.
#!/bin/bash # Script to display the text entered by the user in bold # ------------------------------------------------------------------------- # Copyright (c) 2005 nixCraft project <http:> # This script is licensed under GNU GPL version 2.0 or above # ------------------------------------------------------------------------- # This script is part of nixCraft shell script collection (NSSC) # Visit http://bash.cyberciti.biz/ for more information. # ---------------------------------------------------------------------- # read man page of tput command. echo -n "Enter text : " read text echo "Here is what you entered " # use tput command to display it in bold tput bold echo "$text" echo -n "Press any key to continue..." # okay turn of bold effect read key # it will clear screen too tput reset













Comments (0)
Trackbacks - Pingbacks (0)