If in your bash script, you want to know if a variable is set or not you can make use of the following,
- The isset function.
- Usiing the -z option
Let's take a look at each of them with examples.
Example 1: The isset function
#!/bin/bash
isset() {
[[ -n "${!1}" ]]
}
my_var="Hey there!"
if isset "my_var"; then
echo "The variable is set."
else
echo "The variable is not set."
fi
Example 2: Using the -z Option
#!/bin/bash
if [ -z "$no" ]; then
echo "The variable is not set."
else
echo "The variable is set."
fi
Facing issues? Have Questions? Post them here! I am happy to answer!
More Posts related to Bash,
- How to use Autocomplete and Autosuggestion in Shell Commands
- Bash How to Save Output of a Command to a Variable
- How to know the current shell you are logged in?
- How to Echo Bash Command to a File
- Bash Command to Get Absolute Path for a File
- How to Split a String based on Delimiter in Bash Scripting
- Bash: Command Line Arguments to Bash Script Examples
- Bash Command to Download a File From URL
- How to check if a Command Exists using Bash Script
- Ways to Increment a counter variable in Bash Script
- Know Bash shell version command
- Bash command to Read, Output and Manipulate JSON File
- Bash Command to Base64 Decode a String
- Bash Command to Check Python Version
- Bash: Command to Find the Length of a String
- What is $$ in Bash Shell Script- Special Variable
- Bash - How to check if a Command Failed?
- List all Username and User ID using Bash Command
- Command to Sort File In Reverse Order [Unix/Linux/macOS]
- bash: netstat: command not found
- Bash Command To Go Back To Previous Directory
- [Fix] bash: script.sh: /bin/bash^M: bad interpreter: No such file or directory
- How to check your IP using bash for Windows?
- Bash Command To Check If File Exists
- Convert String from uppercase to lowercase in Bash
More Posts:
- JDBCTemplate Querying Examples with Spring Boot 3 - Java
- Correct way to Get the Current Date in Java 8 or above - Java
- Steps to Delete a SharePoint Site - SharePoint
- Outlook - The mailbox isn't available. This may have occurred because the license for the mailbox has expired. - Microsoft
- Different types of Queue options in RabbitMQ (Default - Classic - Quorum - Stream) - HowTos
- 18: Get Sub List By Slicing a Python List - 1000+ Python Programs - Python-Programs
- List of jars required for Struts2 project - Java
- How to mute all sounds in Notepad++ - NotepadPlusPlus