Exercise 6 -:- NOTE :- read command reads the value from the keyboard and store it in myClass variable and export command will make the variable available for the child shells also otherwise by default all the variables are local to a shell
#!/bin/bash
read -p "Enter the value : "
myClass
export myClass
language: Unix/Linux myName = John Doe Exercise 6 Write an executable script that reads a value...