What are the advantages of bash over all other shells?
Answer / 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 |
What is the syntax of "expr" command?
What does $# stand for?
Explain how you Automate your application using Shell scripting.
How important is shell scripting?
Rewrite the command to print the sentence and convert the variable to plural: echo “i like $variable”.
RAM one table colums a1,a2,a3,a4 respective values 2,4,7,8 KRISH one table colums a1,a2,a3,a4 respective values 3,4,6,9 IN RAM & KRISH a4 column if comparing values RAM A4 - KRISH A4 ( 8-9 =1 THEN print 5 or (RAM) a4 value 10 KRISH a4 values 2 then 10 -2 =8 print 5*8=40 or diff 5 print same
what are command line arguments? what is the need of those?
What is egrep?
How will you find the 99th line of a file using only tail and head command?
Which scripting language is best for automation?
Create a bash shell script to sort and then uniq the file from the command line & store it to a new file and output the results to the screen. Name this script "sortAndUniq.sh"
How do I run a script on mac?