summaryrefslogtreecommitdiff
path: root/extract-data-from-abs-guide/files/eq.txt
diff options
context:
space:
mode:
authorAdam Olech <nddr89@gmail.com>2021-11-11 14:30:51 +0100
committerAdam Olech <nddr89@gmail.com>2021-11-11 14:30:51 +0100
commit1e505562322cc0a66261fa2d3333ea00417be7c6 (patch)
tree6089151eacd1440aca62e25e11d4e645daa65b87 /extract-data-from-abs-guide/files/eq.txt
parent0ca9324c5f48ef91ffd75ceac242ac4a7d9ef166 (diff)
Add all files
Diffstat (limited to 'extract-data-from-abs-guide/files/eq.txt')
-rw-r--r--extract-data-from-abs-guide/files/eq.txt19
1 files changed, 0 insertions, 19 deletions
diff --git a/extract-data-from-abs-guide/files/eq.txt b/extract-data-from-abs-guide/files/eq.txt
index 9db0882..139b267 100644
--- a/extract-data-from-abs-guide/files/eq.txt
+++ b/extract-data-from-abs-guide/files/eq.txt
@@ -47,22 +47,3 @@
is greater than or equal to (within double parentheses)
(("$a" >= "$b"))
-
- string comparison
-
- =
- is equal to
-
- if [ "$a" = "$b" ]
-
- Caution
-
- Note the whitespace framing the =.
- if [ "$a"="$b" ] is not equivalent to the above.
-
- ==
- is equal to
-
- if [ "$a" == "$b" ]
-
- This is a synonym for =.