Bash Comments

Prianka Subrahmanyam
Prianka SubrahmanyamSoftware Engineer, Modern Treasury
Published: August 13, 2024

When to use Bash comments

Just like comments are used in other programming languages, you can also use them throughout your shell scripts to make them more readable. For example, if you’ve written a script for others to use, comments help explain the purpose of certain lines. They can also help you, the developer, quickly remember your thought process from when you wrote the script.

Comments should be used to complement clean, organized Bash scripts. They should only be used to explain less obvious parts of the code. For example, most developers reading an echo statement will know how it works, but a user-defined function may be harder to immediately understand, so a shell script comment would be helpful there.

Single-line comments

To create a single-line comment in a Bash script, begin the comment with a hash (#) symbol. Bash ignores everything after the hash, so even if you include code snippets in comments, they won’t be executed.

A comment can be on a line alone:

Bash
# This is a comment
$ ls path/to/directory

A comment can also be on the same line as script code:

Bash
$ ls path/to/directory  # This is also a valid  way to write comments

Multiline/Block comments

Unfortunately, there is no built-in way to write multi-line comments in Bash. But here are some workarounds.

Multiple single-line comments

You can use multiple single-line comments to make up a larger overall comment:

Bash
# The following code uses the ls command
# The ls command lists the files in a directory.
$ ls path/to/directory

Using a colon and single quotes

The simplest workaround is using the colon and single quote characters:

Bash
: ' 
This comment can be
many lines long
Within this block
'

Arbitrarily-named variables

You can also assign an arbitrarily named variable to a multi-line string to serve the same purpose as a comment - it’s still a block of text that’s recognizable to anyone using your shell script. This is useful if you want to give the comment a name.

Bash
example_comment=' 
This is technically a variable.
But it serves the same purpose as a comment.
'

HereDoc redirection

You can utilize the HereDoc redirection mechanism as a workaround to write multi-line comments in Bash. Usually, HereDoc is used when you need to pass more than one input line to a command, but if you don’t specify a command, the lines have no effect and can serve as a way to write “comments” spanning multiple lines.

Bash
<< 'COMMENT-EXAMPLE' 
  This is a multi-line comment hack.
  You can give the HereDoc any title you want.
  Here we used COMMENT-EXAMPLE.
COMMENT-EXAMPLE

Keep in mind that commenting through HereDoc is not officially supported by Bash, so it’s best practice to stick to hash symbol comments, or the above.

Read more about commenting in bash in the official bash man pages.

Written by
Prianka Subrahmanyam
Prianka SubrahmanyamSoftware Engineer, Modern Treasury
Filed under

Related articles


Reading User Input

Via command line arguments and prompting users for input

Curl Post Request

Use cURL to send data to a server

Bash If Statement

Learn how to use the if statement in Bash to compare multiple values and expressions.

Bash While Loop

Learn how to use and control the while loop in Bash to repeat instructions, and read from the standard input, files, arrays, and more.

Upload Files With curl

Learn how to upload a file to FTP, SFTP servers, Artifactory, and AWS S3 using the curl command.

How To Copy A Directory In Linux

Learn how to copy directories and their content in Linux using the cp command with options like -r for recursive copying, -i for interactive mode, and -a for preserving attributes.

Create Groups In Linux

Learn how to manually and automatically create and list groups in Linux.

How to Check the Size of Folders in Linux

Learn how to output the size of directories and subdirectories in a human-readable format in Linux and macOS using the du command.

Count Files in Linux

Learn how to count files and folders contained in directories and subdirectories in Linux using the ls, find, and wc commands.

List Open Ports in Linux

Learn how to output the list of open TCP and UDP ports in Linux, as well as their IP addresses and ports using the netstat command.

Format Command Output In Linux

Learn how to filter and format the content of files and the output of commands in Linux using the awk command.

Run Bash Shell In Docker

Start an interactive shell in Docker container