diff options
| author | Adam Olech <nddr89@gmail.com> | 2021-11-11 14:30:51 +0100 |
|---|---|---|
| committer | Adam Olech <nddr89@gmail.com> | 2021-11-11 14:30:51 +0100 |
| commit | 1e505562322cc0a66261fa2d3333ea00417be7c6 (patch) | |
| tree | 6089151eacd1440aca62e25e11d4e645daa65b87 /extract-data-from-abs-guide/files/string.txt | |
| parent | 0ca9324c5f48ef91ffd75ceac242ac4a7d9ef166 (diff) | |
Add all files
Diffstat (limited to 'extract-data-from-abs-guide/files/string.txt')
| -rw-r--r-- | extract-data-from-abs-guide/files/string.txt | 27 |
1 files changed, 27 insertions, 0 deletions
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 |
