Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
[gray]# Bash[/gray]
echo -e "\033[1mtest\033[0m again"
[gray]# Ksh[/gray]
echo "\033[1mtest\033[0m again"
#!/bin/ksh
bold=`tput bold`
offbold=`tput rmso`
echo "${bold}Name :${offbold} \n"
echo "where are u going "
[1mName :[27m
where are u going
bold=`tput bold`
offbold=`tput rmso`
echo "${bold}Name: ${offbold} \c"
bold=âtput smsoâ offbold=âtput rmsoâ