hands-on lab

Working with Exit Statuses in Your Shell Scripts

Beginner
Up to 45m
794
4.1/5
Get guided in a real environmentPractice with a step-by-step scenario in a real, provisioned environment.
Learn and validateUse validations to check your solutions every step of the way.
See resultsTrack your knowledge and monitor your progress.
Lab description

Exit statuses and return codes in a shell script offer an effective way of communicating the results of Linux commands and allow for dynamic decision making. Actions based on command exit statuses shape the decision tree within your shell script, while defining accurate exit codes and messaging can make your shell script easier to use by other developers.

In this lab, you will utilize Linux command exit statuses and return codes in a shell script. The commands used in this lab have been covered in the Using Exit Statuses and Return Codes in Your Scripts course. References to the specific lessons of the course will be provided throughout the lab steps.

Expected outputs for each lab step is provided in the script comments

The Linux commands and tools referenced in this lab are:

  • Shell Variables
  • Conditional Statements (if, else)
  • Logical Operators (&&, ||)
  • Command Exit Statuses
  • exit
  • echo
  • vim, nano, or emacs

Learning Objectives

Upon completion of this lab, you will be able to:

  • Return specific exit statuses in your own shell scripts
  • Utilize the exit status of a Linux command
  • Make decisions using command exit statuses

Intended Audience

  • Those beginning to work with Linux
  • Those looking to gain experience with basic shell scripting
  • Software Engineers
  • DevOps Engineers

Prerequisites

Familiarity with basic Linux commands will be beneficial. Refer to the following course to fulfill the prerequisite:

About the author
Avatar
Jun Fritz, opens in a new tab
Cloud Labs Developer
Students
39,492
Labs
106
Courses
1
Learning paths
6

Jun is a Cloud Labs Developer with previous experience as a Software Engineer and Cloud Developer. He holds the AWS Certified Solutions Architect and DevOps Engineer Professional certifications. He also holds the AWS Certified Solutions Architect, Developer, and SysOps Administrator Associate certifications. 

Jun is focused on giving back to the growing cloud community by sharing his knowledge and experience with students and creating engaging content. 

Covered topics
Lab steps
Accessing the Amazon Linux 2 Terminal
Modifying Your Lab Shell Script
Defining Shell Script Exit Statuses
Accessing Shell Script Exit Statuses
Making Decisions with Exit Statuses