Write a shell script to accept an employee name and display a greeting message Welcome to Unix program


  
 file: welcome.sh
 
  #Write a shell script to accept an employee name and display a greeting message Welcome to Unix program
  read name
  echo " welcome $name"
  
  
  output:
  unix
  welcome unix
  
  

Post a Comment

If you have any doubts, Please let me know
Thanks!

Previous Post Next Post