What is the command for " how many shell is running in your
system or how many shell supported by your system " ?.
Answers were Sorted based on User's Feedback
Answer / sandeep jaiswal
how many shell supported by your system
check the file /etc/shells
| Is This Answer Correct ? | 9 Yes | 1 No |
Answer / joker
> ps -a |grep -E 'sh$' |wc -l
-a is for to list process of all users
-E extended grep to filter the shells (since they end with sh like bash, tcsh, ksh, sh
-$ to match only at the end of the line where the process is printed
| Is This Answer Correct ? | 0 Yes | 1 No |
Answer / nayakss
ps| grep -E "*shh*" | wc -l
This gives the no of shell currently running.
Though this answer is correct but I don't think this is the
right approach.
| Is This Answer Correct ? | 0 Yes | 3 No |
Why is used in shell scripting?
Why is shell scripting important?
Please anyone suggest atleast 2 good training institutes in Hyderabad, INDIA where i can learn unix shell scripting.
Where are cowrie shells found?
1.Write a script, which converts a number from binary to hexadecimal format or vice versa.
what is the difference between cmp and diff commands
What is the use of echo in shell script?
In shell scripting if text is surrounded by single quotes what does it denotes?
How to calculate the number of passed arguments?
Explain about the slow execution speed of shells?
What is the use of "test" command?
How to use arguments in a script?