From 1e505562322cc0a66261fa2d3333ea00417be7c6 Mon Sep 17 00:00:00 2001 From: Adam Olech Date: Thu, 11 Nov 2021 14:30:51 +0100 Subject: Add all files --- extract-data-from-abs-guide/files/string.txt | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 extract-data-from-abs-guide/files/string.txt (limited to 'extract-data-from-abs-guide/files/string.txt') diff --git a/extract-data-from-abs-guide/files/string.txt b/extract-data-from-abs-guide/files/string.txt new file mode 100644 index 0000000..9ba104f --- /dev/null +++ b/extract-data-from-abs-guide/files/string.txt @@ -0,0 +1,27 @@ + = + is equal to + + if [ "$a" = "$b" ] + + == + is equal to + + if [ "$a" == "$b" ] + + != + is not equal to + + if [ "$a" != "$b" ] + + < + is less than, in ASCII alphabetical order + + if [[ "$a" < "$b" ]]; if [ "$a" \< "$b" ] + + > + is greater than, in ASCII alphabetical order + + if [[ "$a" > "$b" ]]; if [ "$a" \> "$b" ] + + -z + string is null, that is, has zero length -- cgit v1.2.1