Skip to content

Bourne Again SHell (Bash)#

On Ubuntu Linux, your default shell environment is provided by Bash. It's a default for many systems and it's very powerful and very well documented. Because most systems use Bash by default, there is a lot of documentation available for you to find answers. The community of general Linux users who also known Bash well is massive, further increasing the help you have available to you.

We'll talk a bit about some Bash basics, enough for you to continue through this book. A lot of the more advanced features are left to the reader to explore as a learning exercise.

Commands#

A command is made up of multiple words, the first being the command itself, and the rest of the words being that command’s flags and/or arguments. Here's an example:

1
2
michael@develop:~$ ls -l my_script
-rwx------ 1 michael michael 51 Mar 21 03:12 my_script

Here the command is ls and the -l is a flag that is used to change how the command behaves. The my_script word at the end if an argument given to the ls command to do its operation against. Given that the ls command is designed to list files and directories, it's done its job well here.

To better understand how the arguments to a command work, consider our call to ls without -l:

1
2
michael@develop:~$ ls my_script
my_script

You'll notice we're missing all of the file's information: -rwx------ 1 michael michael 51 Mar 21 03:12 (we cover what this all means later on.) This is because the -l flags means to use a "long listing format". Without it, ls gives us a simple list of files and directories. So we can see that the -l flag changes the behaviour of the ls command, from its simple listing to a more complex one.

We also provided an argument, my_script. What if we run just ls, without the argument?

1
2
michael@develop:~$ ls
my_script  new_command  number_game

We get a list of the files in the current working directory. We can see the my_script file is there. If we repeat the same thing again, without the my_script but with the -l:

1
2
3
4
5
michael@develop:~$ ls -l
total 12
-rwx------ 1 michael michael   51 Mar 21 03:12 my_script
-rwxrw-r-- 1 michael michael   32 Mar 22 22:57 new_command
drwxrwxr-x 5 michael michael 4096 Mar 21 05:38 number_game

We can see that, yet again, we've changed the (default) behaviour of the command ls, which in term changed the output from it.