Write a bash script that takes two strings as arguments and performs the following string tests using if, then, else, and elif syntax:
$ ./string_tests.sh Hello Hello
Strings are equal
First string has non-zero length
Second string has non-zero length
$ ./string_tests.sh Hello ""
Strings are not equal
First string has non-zero length
Second string has zero length