Math, asked by rameshc48874, 4 months ago

what is null shell? ​

Answers

Answered by ranjitdas9121
0

Step-by-step explanation:

jjjnhbbbbbbbbb koi jjjnhbbbbbbbbb jjj

Answered by chiragsaini481
0

Answer:

o find out if a bash variable is null:

Return true if a bash variable is unset or set to the null (empty) string: if [ -z "$var" ]; then echo "NULL"; else echo "Not NULL"; fi. Another option to find if bash variable set to NULL: [ -z "$var" ] && echo "NULL"

Similar questions