In order to compare Strings in Bash Scripts you can make use of the = operator or using == operator,
Example 1: Using = operator% cat bash_example.sh
#!/bin/bash
#Bash Compare Strings
StringA="HelloWorld"
StringB="HelloWorld"
if [ "$StringA" = "$StringB" ]; then
echo "String A is equal to String B"
else
echo "String A is not equal to String B"
fi
Output:
String A is equal to String B
Example 1: Using == operator (pattern matching)#!/bin/bash
#Bash Compare Strings
StringX="Java"
StringY="PHP"
if [[ "$StringX" == "$StringY" ]]; then
echo "String X is equal to String Y"
else
echo "String X is not equal to String Y"
fi
Output:
String X is not equal to String Y
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