Member-only story

The Ultimate Programmer’s Guide to Bash Scripting

Shinichi Okada
Better Programming
Published in
15 min readJan 29, 2021
Photo by Jeremy Bishop on Unsplash

Introduction

Table of Contents· Introduction
· Setting Things Up
Mac
The bin directory
· VSCode Extensions
· Getting Started
Shebang
Comment
· Variables
Variable assignment
Environment variables
Internal variables
Assigning the command output to a variable
Built-in commands
· Tests
if statement
Spaces Matter
Test file expressions
Test string expressions
Test integer expressions
Double parentheses
· How To Use if/else and if/elif/else Statements
· Double Brackets
· How To Use for Loops
Using a for loop to rename files
· How To Use Parameters
· How To Accept User Input
· Brace Expansion Using Ranges
· How To Use While Loops
· What Are Exit Status/Return Codes?
Checking the exit status
· How To Connect Commands
Logical operators and the command exit status
Exit command
Logical AND (&&)
Logical OR (||)
The semicolon
Pipe |
· Functions
Function parameters
· Variable Scope
Local variables
· Function Exit Status
· Checklist
· Conclusion
Newsletter
References

Setting Things Up

Mac

$ bash --version
GNU bash, version 3.2.57(1)-release (x86_64-apple-darwin19)
Copyright (C) 2007 Free Software Foundation, Inc.
$ brew install bash
$ which -a bash
/usr/local/bin/bash…

Create an account to read the full story.

The author made this story available to Medium members only.
If you’re new to Medium, create a new account to read this story on us.

Or, continue in mobile web

Already have an account? Sign in

Shinichi Okada
Shinichi Okada

Written by Shinichi Okada

A programmer and technology enthusiast with a passion for sharing my knowledge and experience. https://codewithshin.com

Responses (5)

Write a response