Create a bash shell script that reads in a number from the
user. If the number is 1, print out the date. If the number
is 2, list the files in the current directory. If the number
is 3, print out who is currently logged onto the system. If
the number is anything else, print out an error message and
exit. Name this script "various.sh"
Answer Posted / aryan
cho "Enter Choice"
read num
case $num in
1) echo `date`
;;
2) ls
;;
3) who
;;
*) echo "Wrong option press 1 2 3 only"
;;
esac
| Is This Answer Correct ? | 8 Yes | 0 No |
Post New Answer View All Answers
What is scripting autism?
Explain about login shell?
Write a shell script to get current date, time, user name and current working directory.
What language is bash written in?
What does $$ mean in shell script?
What is console line?
What are the different commands available to check the disk usage?
How do we create command aliases in a shell?
What is awk in shell script?
How to write a function?
What is the best shell scripting language?
How do I set bash as default shell mac?
Is shell a scripting language?
What is sudo command?
What is a scripting language simple definition?