What is Bash



What is Bash

What is Bash

Use the terminal application to use Bash and enter commands that perform actions which allow you to write different things on the screen.

Don’t forget to check out our site http://howtech.tv/ for more free how-to videos!
http://youtube.com/ithowtovids – our feed
http://www.facebook.com/howtechtv – join us on facebook
https://plus.google.com/103440382717658277879 – our group in Google+

In this tutorial we will introduce you to what is Bash in Linux.
Bash is basically a file to process commands which can be run in the Terminal window. This allows the user to write commands and actions. A Bash can also read commands from a file which is technically called a script.
Using Bash is not very difficult if you know which scripts to run and use. Follow this tutorial below to understand a basic overview of what exactly Bash present in Linux is.

Step 1 — Write a script in terminal

Let’s start by creating writing the script in the terminal only.
The echo command can be used to print the output on to the screen, so if we type Hello World within inverted commas after the echo command, it will be printed on to the screen, as it is.
echo “Hello, World”

Step 2 — Enter command to display digits

Similarly, if you want to display all the digits between zero and fifteen consecutively, then while using Bash you can enter and use the echo command followed by the curly brackets and write “one dot, dot ten”
Once we hit enter, it will display the counting from 1 to 10 on the screen like so.
echo {1..10}

Step 3 — Display letters on the screen

Similarly, if you want to display all the letters between A and Z, you can use the same command to print the results on the screen.
And that’s basically it for a very basic introduction on Bash. So to use and understand what is Bash follow the tutorial below and practice entering commands to see the function of each.
echo {A..Z}

Comments are closed.