What are the different shells available?
Answers were Sorted based on User's Feedback
BASH Shell (common Shell)
CSH( C Shell)
KSH(Korn Shell)
| Is This Answer Correct ? | 6 Yes | 0 No |
Answer / subbareddy
Bourne-Again shell (bash) -- Written as part of the GNU
project to provide a superset of Bourne Shell
functionality.
Debian Almquist shell (dash) -- Dash is a modern
replacement for ash in Debian.
Korn shell (ksh) -- Written by David Korn, while at Bell
Labs.
Z shell (zsh) -- considered as the most complete (read: the
most features) shell: it is the closest thing that exists
to a superset of sh, ash, bash, csh, ksh, and tcsh.
[citation needed]
Busybox -- Tiny utilities for small and embedded systems,
include a shell.
| Is This Answer Correct ? | 4 Yes | 2 No |
What is the meaning of $1 in shell script?
How would you print just the 25th line in a file using smallest shell script?
How to change our default shell?
determine the output of the following command: echo ${new:-variable}
Is powershell a bash?
What does $0 mean in shell script?
How do you debug a script?
Given a file find the count of lines containing the word "abc".
Explain how you Automate your application using Shell scripting.
write a shell script that accepts name from user and creates a directory by the path name, then creates a text file in that directory and stores in it, the data accepted from user till STOP, displays the no. of characters stored in the file.Program stops if directory name is null
Write a shell script to check whether a number is Armstrong number or not?
What is shift command in shell script?