From 40870736bb5c26386c46bd9be8c99223375a89cd Mon Sep 17 00:00:00 2001 From: geekpi Date: Fri, 13 Oct 2023 08:37:25 +0800 Subject: [PATCH] translated --- ...010 How to Add Comments in Bash Scripts.md | 204 ------------------ ...010 How to Add Comments in Bash Scripts.md | 204 ++++++++++++++++++ 2 files changed, 204 insertions(+), 204 deletions(-) delete mode 100644 sources/tech/20231010 How to Add Comments in Bash Scripts.md create mode 100644 translated/tech/20231010 How to Add Comments in Bash Scripts.md diff --git a/sources/tech/20231010 How to Add Comments in Bash Scripts.md b/sources/tech/20231010 How to Add Comments in Bash Scripts.md deleted file mode 100644 index 536ae0f3c8..0000000000 --- a/sources/tech/20231010 How to Add Comments in Bash Scripts.md +++ /dev/null @@ -1,204 +0,0 @@ -[#]: subject: "How to Add Comments in Bash Scripts" -[#]: via: "https://itsfoss.com/bash-comments/" -[#]: author: "Sagar Sharma https://itsfoss.com/author/sagar/" -[#]: collector: "lujun9972/lctt-scripts-1693450080" -[#]: translator: "geekpi" -[#]: reviewer: " " -[#]: publisher: " " -[#]: url: " " - -How to Add Comments in Bash Scripts -====== - -Adding comments in bash scripts is one of the most effective ways to keep your code clean and understandable. - -You may ask why. - -Let's suppose your script contains a complex regex or multiple complex blocks of codes and in that case, you can add comments so other developers or you can have an idea of what that block of code was meant to be. - -Commenting out part of code also helps in debugging scripts. - -In this tutorial, I will walk you through three ways to add comments in bash scripts: - - * Single-line comments - * In line comments - * Multi-line comments - - - -So let's start with the first one. - -### Single-line comments in bash - -To add single-line comments, you have to put the hashtag (#) at the beginning of the line and write a comment. - -Here's a simple example: - -``` - - #!/bin/bash - # This is a comment - echo "Hello, World!" - -``` - -While executing, the comments will be ignored and when I executed the above command, it looked like this: - -![][1] - -💡 - -The only exception to the # for comment rule is the #!/bin/bash line at the beginning of the scripts. It's called [shebang][2] and it used to specify the interpreter to be used while running the script. There are different shells and the syntax may differ. So, a good practice is to specify for which shell the script was written. For example, if it were for ksh, you would use #!/bin/ksh - -### Inline comments in bash scripts - -Alternatively, you can put the comment inside the code block to document what is the purpose of that specific line. - -🚧 - -Anything after # won't be executed until the line ends, so make sure you add the comment at the end of the code. - -Here's a simple example: - -``` - - #!/bin/bash - echo "Hello, World!" #Prints hello world - -``` - -![][3] - -### Multi-line comments in bash - -🚧 - -There is no in-built multiline commenting feature in Bash. However, there are a few workarounds to achieve the multiline comment effect. - -As the name suggests, multi-line comments in bash scripting allow you to write comments in multiple lines or prevent executing block of code by putting them in multiline comment section: - - 1. Use # at the begnning of eacj line - 2. [Colon notation][4] (uses colon followed by a single quote) - 3. Here document (uses << followed by delimiter) - - - -So let's start with the first one. - -#### 1\. Use # for each line of block comment - -This is what I suggest to use if your purpose is to explain part of the script. After all, # is the actual commenting feature. - -And this is what many developers use, too. - -Suppose you have to explain the purpose of the script, author info or licensing information in the beginning. You can write it like this: - -``` - - #!/bin/bash - - ###################################### - ## This script is used for scanning ## - ## local network ## - ## Licensed under GPL 2.0 ## - ###################################### - - rest of the bash script code - -``` - -That's fine when you know how your bash script behaves. If you are debugging a bash script and want to hide part of the script, adding # at the beginning of each line of the required code and then removing them after debugging is a time-consuming task. - -The next two sections help you with that. - -#### 2\. Colon notation - -To use the colon notation, you write block comments between `: '` and the closing `'` as shown here: - -``` - - #!/bin/bash - - : ' - This is how you can use colon notation - And this line too will be ignored - ' - echo "GOODBYE" - -``` - -When you execute the above script, it should only print GOODBYE: - -![][5] - -#### 2\. Here document - -By far, this is the most popular way to write multiline comments in bash which you use `<<` followed by a delimiter (a set of characters to specify the start and the end of the comments). - -Here's how you use it: - -``` - - #!/bin/bash - - <