1
1
mirror of https://github.com/namibia/awesome-cheatsheets.git synced 2024-11-21 12:25:14 +00:00

Merge pull request #86 from artic92/bash-cheatsheet-correction

Corrected the bash cheatsheet
This commit is contained in:
Julien Le Coupanec 2019-08-03 15:00:41 +03:00 committed by GitHub
commit 81eae536b6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -219,7 +219,7 @@ statement1 || statement2 # or operator
# STRINGS
str1 = str2 # str1 matches str2
str1 == str2 # str1 matches str2
str1 != str2 # str1 does not match str2
str1 < str2 # str1 is less than str2 (alphabetically)
str1 > str2 # str1 is greater than str2 (alphabetically)