What is the command for " how many shell is running in your
system or how many shell supported by your system " ?.
Answer Posted / 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 |
Post New Answer View All Answers
How do you know which shell I am using?
What is the use of break command?
What is the crontab?
write a shell script to check the failed jobs?
Explain about stdin, stdout and stderr?
Can shell script run on windows?
What is path in shell script?
Is cmd a shell?
What is sed in shell script?
What are the two files of crontab command?
How do scripts work?
What does echo $0 do?
Using set -A write a script to print the output of the ls command in 5 columns with two spaces between each column. Pretend that ls does not have multicolumn output.
How to check if a directory exists?
Is it possible to substitute "ls" command in the place of "echo" command?