Script Categories

Shell Script To Display The Text Entered By The User in Bold

Posted in Academic

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

Download - Email this to a friend - Printable version

Leave a Reply

We encourage your comments, and suggestions. But please stay on topic, be polite, and avoid spam. Thank you very much for stopping by our site!

XHTML: You can use these tags: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>

Tags: , , , , ~ Last updated on: April 15, 2008