Advertisement
Guest User

Untitled

a guest
Jul 17th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. #argument subject
  2. math=$1
  3. Filename=./math/questions.txt
  4. #Asking for Firstname
  5. echo What is your Firstname?
  6. read firstname
  7. #asking for lastname
  8. echo What is your lastname?
  9. read lastname
  10. #welcome first and lastname
  11. echo "Please answer the following questions $firstname $lastname"
  12. while read -r line
  13. do
  14. echo $line
  15. done < Filename
  16. ~
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement