#shell-scripting-read-user-input
Read more stories on Hashnode
Articles with this tag
#!/bin/bash echo "Enter Name : " read name echo "Entered name : $name" multiple input #!/bin/bash echo "Enter Name : " read name1 name2 name3 echo...