Categories
Linux Tutorial Series

Linux Tutorial Series – 188 – Logical operators

Here is the video version, if you prefer it:

Let’s talk about logical operators outside of the context of shell scripts, at first.

If I run two commands like this:

touch someFile && emacs someFile

what would happen is that I would create a file named someFile and then I would immediately open it with Emacs (if you don’t have Emacs, you can use less). However, try this:

mislav@mislavovo-racunalo:~/Linux_folder$ ls -l nonExistentFile && emacs someFile

ls: cannot access 'nonExistentFile': No such file or directory

What happened here is that we tried to use ls on a non existent file and we got an error message. But our Emacs didn’t open up as well. What is happening here?

See, when you use the && operator (also known as the “and” operator) you are saying “Execute the first command and then, if it succeeds, execute the second command”. How does the shell know if a command executed successfully? Why, by exit code, of course! (Ward, 2014)⁠

When a command is successful, its exit code is 0. && says “I will execute the second command only if the exit code of the first command (to the left of the && sign) is 0”. ||, another logical operator, says just the opposite: “I will execute the second command only if the exit code of the first command (to the left of the || sign) is not 0”. You can remember it like this, but this makes more sense if you know about logical gates, which you don’t need to to understand Linux, so I won’t explain those.

So if I write:

mislav@mislavovo-racunalo:~/Linux_folder$ ls -l nonExistentFile || emacs someFile

this actually opens up Emacs, because || works in the way I described above.

Hope you learned something useful!

References

Ward, B. (2014). How Linux Works: What Every Superuser Should Know (2nd ed.). No Starch Press. Page 258

Categories
Linux Tutorial Series

Linux Tutorial Series – 187 – Elif (else if)

Here is the video version, if you prefer it:

Checking only one condition in a conditional is not the only thing we can do. We can check multiple conditions, using elif. Here is how to use elif:

#!/bin/bash

if [ "$1" = ‘Hello’ ]

then

echo 'Hello back to you!'

elif [ "$1" = ‘Hi’ ]

then

echo 'Hi!'

else

echo 'You are rude.'

fi

This is our entire shell script with an added elif, modeled after (Ward, 2014)⁠. Let’s look at its output:

mislav@mislavovo-racunalo:~/Linux_folder$ ./tutorialScript.sh Hello

Hello back to you!

mislav@mislavovo-racunalo:~/Linux_folder$ ./tutorialScript.sh Hi

Hi!

mislav@mislavovo-racunalo:~/Linux_folder$ ./tutorialScript.sh

You are rude.

You can use elif to test for multiple conditions. But there is also another construct, called case, which is more appropriate than just a bunch of elifs. We will talk about case later on.

Hope you learned something new!

References

Ward, B. (2014). How Linux Works: What Every Superuser Should Know (2nd ed.). No Starch Press. Page 258

Categories
Linux Tutorial Series

Linux Tutorial Series – 186 – The else statement

Here is the video version, if you prefer it:

The else statement in combination with the if statement is used to tell the following: “If this condition is true do this, if this condition is not true, do that”. That’s pretty much the gist of it.

Below is the entire shell script (with the else statement), modeled after (Ward, 2014)⁠:

#!/bin/bash

if [ “$1” = ‘Hello’ ]

then

echo 'Hello back to you!'

else

echo 'You are rude.'

fi

And let’s run this script with the first argument being Hello and then it being something different:

mislav@mislavovo-racunalo:~/Linux_folder$ ./tutorialScript.sh Hello

Hello back to you!

mislav@mislavovo-racunalo:~/Linux_folder$ ./tutorialScript.sh argument1

You are rude.

What is happening here? We are testing if the first argument to our script is Hello. If it is, we echo Hello back to you! and if it is not, we echo You are rude.

What happens is the following:

  1. The test in the if condition is tested – that is, we check if $1 really equals Hello.
  2. If the test from step 1 is true (meaning that the exit code is 0), we execute the code starting at then until else – that is, we echo “Hello back to you!”
  3. If the test from step 1 is false (meaning that the exit code is not 0), we execute the code starting at else until fi – that is, we echo “You are rude.”

This process above follows the logic of: “If the condition is true, then this, if not (else), then the other thing”.

Hope you learned something useful!

References

Ward, B. (2014). How Linux Works: What Every Superuser Should Know (2nd ed.). No Starch Press. Pages 256-257

Categories
Linux Tutorial Series

Linux Tutorial Series – 185 – The if statement

Here is the video version, if you prefer it:

The if statement allows us to test for a condition and execute a certain set of commands based on the result of that test. (“If Statements!,” n.d.)⁠

An example script:

#!/bin/bash

if [ "$1" = 'Hello' ]

then

echo 'Hello back to you!'

fi

What is happening here? We are testing if the first argument to our script is Hello. If it is, we echo Hello back to you! and if it is not, we don’t do anything.

More technically, the [ is a command that performs tests for Unix conditionals. (Ward, 2014)⁠ The if, then and fi are shell keywords and everything else is a command. So what happens is that we check if the first argument to our shell script is indeed equal to Hello. If it is, then we echo Hello back to you!. If it is not, we don’t echo out anything.

A detail – the [ command returns an exit code. If the exit code is 0 (as we learned) that means that the check went well and we go on to echo Hello back to you! and if the exit code is non-zero we know that something went wrong and we don’t echo out anything.

Another detail: why did we surround the $1 in quotes above? Because if we don’t pass the first argument (it is empty), we get an error like so:

mislav@mislavovo-racunalo:~/Linux_folder$ ./tutorialScript2.sh

./tutorialScript2.sh: line 2: [: =: unary operator expected

because we don’t supply anything for the missing argument and then we have a gap between the [ and the =. However, when we surround the argument with quotes and don’t supply the argument, we get a so-called empty string (meaning empty sequence of characters). If we use the quotes, we don’t get that error.

Hope you learned something useful!

References

If Statements! (n.d.). Retrieved March 7, 2020, from https://ryanstutorials.net/bash-scripting-tutorial/bash-if-statements.php

Ward, B. (2014). How Linux Works: What Every Superuser Should Know (2nd ed.). No Starch Press. Pages 256-257

Categories
Linux Tutorial Series

Linux Tutorial Series – 183.1 – A note – we are using variables

I just wanted to leave a post saying that we will be using variables in shell scripts. We talked about variables and how they are essentially a named object that stores value in a piece of computer memory. We are going to be using them in our shell scripts for that exact purpose – storing values and then doing something based on the values of the variables.

Thank you for reading!

Categories
Linux Tutorial Series

Linux Tutorial Series – 183 – Special variables

Here is the video version, if you prefer it:

Today, let’s talk about special variables. Special variables are contained within every shell script and can be useful, depending on what you are doing. It pays to know them.

The first type of special variables we will cover are individual arguments to the shell script. (Ward, 2014)⁠ Let’s open up our tutorialScript.sh and write (after the shebang):

echo $1

So our entire script looks like:

#!/bin/bash

echo $1

Make sure to save the script. Now, let us run our script by typing:

mislav@mislavovo-racunalo:~/Linux_folder$ ./tutorialScript.sh

bash: ./tutorialScript.sh: Permission denied

Ooops! Let’s fix this by giving our user execute permissions. How to do so? Well, chmod of course:

mislav@mislavovo-racunalo:~/Linux_folder$ chmod 755 tutorialScript.sh

Now let’s run our script and pass it an argument as so:

mislav@mislavovo-racunalo:~/Linux_folder$ ./tutorialScript.sh argument1

argument1

We see we get argument1. Try putting echo $2 instead of echo $1 and then pass two arguments to your script. If the second argument is argument2, you will get argument2 printed out. Try it out! No, really, try it out – it will take less than 1 minute of your time and it will solidify the concept, so it is a worthwhile investment based on time investment / gain ratio.

Here is a list of special variables you should try echoing out as well:

  • $# – number of arguments
  • $@ – all arguments
  • $0 – script name
  • $$ – process ID (of the shell running the script)
  • $? – exit code (will be covered later)

You can also shift arguments with the shift command, but I leave you to Google that if you ever need it.

Hope you learned something useful!

References

Ward, B. (2014). How Linux Works: What Every Superuser Should Know (2nd ed.). No Starch Press. Pages 253-255

Categories
Linux Tutorial Series

Linux Tutorial Series – 181 – Comments

Here is the video version, if you prefer it:

In shell scripts, one-line comments start with a #. Comments are ignored by the interpreter, but they serve to instruct the human reading the script on what should the script do.

There also exist multi-line comments; see (“Shell Comments,” n.d.)⁠.

Thank you for reading!

References

Shell Comments. (n.d.). Retrieved March 7, 2020, from https://bash.cyberciti.biz/guide/Shell_Comments

Categories
Linux Tutorial Series

Linux Tutorial Series – 180 – Shebang

Here is the video version, if you prefer it:

The first part of a shell script is called a shebang. A shebang tells the kernel what interpreter to use to execute the script that follows. (Shotts, 2019) By interpreter, I mean the shell. (“Does the shebang determine the shell which runs the script?,” n.d.)⁠ You will recognize the shebang because it is the line that starts with #!.

A sidenote: shell scripts are interpreted, not compiled.⁠

Let’s now write a shebang in our script. Let’s name our script tutorialScript.sh. In it, write the following as the first line:

#!/bin/bash

That tells the kernel to interpret our script using the bash interpreter. You have different-looking shebangs for different interpreters.

Hope you learned something useful!

References

Does the shebang determine the shell which runs the script? (n.d.). Retrieved February 21, 2020, from https://unix.stackexchange.com/questions/87560/does-the-shebang-determine-the-shell-which-runs-the-script

Shotts, W. (2019). The Linux Command Line, Fifth Internet Edition. Retrieved from http://linuxcommand.org/tlcl.php. Page 389

Categories
Linux Tutorial Series

Linux Tutorial Series – 179 – Shell scripts – when and when not to use them

Here is the video version, if you prefer it:

Shell scripts ought to be used for automating tasks and file management. That was an assertion made by (Ward, 2014) and I agree with that.

If you ever need to do something more than manipulate files or automate tasks, shell scripts probably aren’t the ideal choice for it. I used shell scripts for the following tasks:

  • seeing a difference between multiple files in two folders
  • automating a task of starting a program

If I were to use shell scripts for some kind of text manipulation or some calculations, I would use a different programming language. It’s not that shell scripts can’t do calculations or manipulate text, it is that it is easier to do so in other programming languages. So keep in mind: If it is not file management or automation, use another programming language. Pick the right tool for the right task.

Hope you learned something useful!

References

Ward, B. (2014). How Linux Works: What Every Superuser Should Know (2nd ed.). No Starch Press. Page 250

Categories
Linux Tutorial Series

Linux Tutorial Series – 177 – Checkpoint

Here is the video version, if you prefer it:

We are about to delve into shell scripting. Shell scripts are used to automate certain things related to files.

It is good to be acquainted with shell scripts if you are a software developer, but if you are a regular user, read this only if you are interested. The aim of this section will be to get you familiar enough with shell scripting to read and write shell scripts, albeit you will need to Google certain details of the things you are trying to achieve (if you are writing your own shell scripts). We will do this by making a very simple shell script which demonstrates the usage of each of the constructs we will learn to use.

Talk soon!