Horje
bash scripting string comparison Code Example
bash scripting string comparison
#!/bin/bash

VAR1="Linuxize"
VAR2="Linuxize"

if [ "$VAR1" = "$VAR2" ]; then
    echo "Strings are equal."
else
    echo "Strings are not equal."
fi




Shell

Related
how to install postgresql in manjaro Code Example how to install postgresql in manjaro Code Example
linux give all files an extension Code Example linux give all files an extension Code Example
git remove file from history Code Example git remove file from history Code Example
compare strings shell Code Example compare strings shell Code Example
list of files in git commit Code Example list of files in git commit Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
11