adspace
Write a shell script that requests the user's age and then echoes it, along with some suitable comment.
Answer Posted / Gautam Kumar Singh
Here is a simple shell script that does this:nnecho -n "Enter your age: "; read age;necho "You are $age years old."
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers