what is null shell?
Answers
Answered by
0
Step-by-step explanation:
jjjnhbbbbbbbbb koi jjjnhbbbbbbbbb jjj
Answered by
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