answersLogoWhite

0

What is the bash shell?

Updated: 8/17/2019
User Avatar

Wiki User

15y ago

Best Answer

The bash (short for Bourne Again Shell) is a popular command shell for Linux and Unix-like systems. It's name comes from the Bourne Shell, an old shell found on many older Unix systems. bash is a free reimplementation of that shell.

User Avatar

Wiki User

15y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the bash shell?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is bash shell scripting?

Bash shell scripting is the process of writing a series of commands in a text file that are recognized by the bash shell interpreter.


Where is the command shell on Ubuntu?

bash is located in /bin/bash.


What the HECK is 'BASH'?

On a computer Bash is a Unix shell and command language.


Which shell is the default in Fedora?

Bash shell. Stands for Bourne Again Shell


What is the most popular sea shell?

Bash sea shell


What is bash in Linux?

bash (Bourne Again Shell) is the default shell in most Linux distributions. It was created as part of the GNU project.


Is the hidden file in the users home directory that is the configuration file for bash is bash profile?

The bash shell uses a hidden file called .bashrc for settings in the shell upon startup.


What is the default shell of Fedora Core 5?

BASH (Bourne-again Shell)


Where is the standard shell for most Linux computers?

Most systems will come with BASH installed.


How do you use the bourne shell under C shell?

exec shor even betterexec bash


What is a bashism?

A bashism is a shell command specific to the Bash interpreter.


How do you take a single line of input from the user in a shell script?

In "bash" shell it can be achieved with command "read" #!/bin/bash echo "Hi There, what is your name?" read name echo $name