top of page

Variables Linux Administration


############################################### # variables ################################################

#!/bin/bash S="***********************************************************************" D="~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"

echo "+++++++++++++++++++++++++++++++++++++++++++++++" echo "Hello World" echo "+++++++++++++++++++++++++++++++++++++++++++++++++++" printf "%s\n" "Welcome here please" echo "Good & Done" echo -e "\n$S" echo -e "\nD" echo "Welcome to the training program $LOGNAME" echo -e "\n$S" echo -e "\nD" echo "Welcome to the training program $USER" echo -e "\n$S" echo -e "\nD" echo "Your logging name is $LOGNAME" echo -e "\n$S" echo -e "\nD" echo "Your logging name is $LOGNAME" echo -e "\n$S" echo -e "\nD" echo "Your hostname is : $HOSTNAME" echo -e "\n$S" echo -e "\nD" echo What is your Lname? read LNAME echo "Nice meeting you $LNAME - Please let me know if you need any help from me." S="***********************************************************************" D="~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~" echo -e "\n$S" echo -e "\n$D" echo "Good & Done !" echo "Quiting $S" wq!

############################################################# result ##############################################

./test5.sh +++++++++++++++++++++++++++++++++++++++++++++++ Hello World +++++++++++++++++++++++++++++++++++++++++++++++++++ Welcome here please Good & Done

***********************************************************************

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Welcome to the training program fwere

***********************************************************************

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Welcome to the training program fwere

***********************************************************************

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Your logging name is fwere

***********************************************************************

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Your logging name is fwere

***********************************************************************

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Your hostname is : alelomachine

***********************************************************************

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ What is your Lname? mangidi Nice meeting you mangidi - Please let me know if you need any help from me.

***********************************************************************

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Good & Done ! Quiting ***********************************************************************

bottom of page