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 / prasad
#!/bin/sh
select num in 1 2 3 any; do
case $num in
1) date;;
2) ls;;
3) who;;
*) echo "Error"; break;;
esac
done
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Is powershell a language?
What is the syntax of while loop in shell scripting?
Why is the use of shell script?
Is powershell a bash?
What makes c shell a more preferable option than the bourne shell?
What is shell and terminal?
What are the zombie processes?
What is $1 in shell scripting?
How to check if a directory exists?
What is in a script?
What can scripts do?
c program to implement unix/linux command to block the signal ctrl-c and ctrl-\ signal during the execution ls -l|wc -l
Suppose you execute a command using exec, what will be the status of your current process in the shell?
Write down the syntax for all the loops in shell scripting.
What is the use of "$#" in shell scripting?