368d6fafea
Code backup
10 lines
184 B
Bash
10 lines
184 B
Bash
#!/bin/bash
|
|
|
|
String='pippo' # Zero-length ("null") string variable.
|
|
|
|
if [ -z "$String" ]
|
|
then
|
|
echo "\$String is null."
|
|
else
|
|
echo "\$String is NOT null."
|
|
fi # $String is null. |