What are the advantages of bash over all other shells?
Answer Posted / amitverma
Bash is an sh-compatible shell that incorporates useful
features from the Korn shell (ksh) and C shell (csh). It is
intended to conform to the IEEE POSIX P1003.2/ISO 9945.2
Shell and Tools standard. It offers functional improvements
over sh for both programming and interactive use; these
include command line editing, unlimited size command
history, job control, shell functions and aliases, indexed
arrays of unlimited size, and integer arithmetic in any
base from two to sixty-four. Bash can run most sh scripts
without modification.
Like the other GNU projects, the bash initiative was
started to preserve, protect and promote the freedom to
use, study, copy, modify and redistribute software. It is
generally known that such conditions stimulate creativity.
This was also the case with the bash program, which has a
lot of extra features that other shells can't offer.
| Is This Answer Correct ? | 7 Yes | 4 No |
Post New Answer View All Answers
What is shell scripting used for?
Write down the syntax of "for " loop
What is in a script?
How to use arguments in a script?
What is computer cli?
determine the output of the following command: echo ${new:-variable}
How can any user find out all information about a specific user like his default shell, real-life name, default directory, when and how long he has been using the system?
Write down the syntax for all the loops in shell scripting.
I want to monitor a continuously updating log file, what command can be used to most efficiently achieve this?
What are "c" and "b" permission fields of a file?
I want to connect to a remote server and execute some commands, how can I achieve this?
What does egrep mean?
Explain about stdin, stdout and stderr?
How will you find the 99th line of a file using only tail and head command?
What does echo mean in scripting?