search for: 1881eebd

Displaying 1 result from an estimated 1 matches for "1881eebd".

2023 Apr 19
3
bash test ?
Hi guys. I cannot wrap my hear around this: -> $ unset _Val; test -z ${_Val}; echo $? 0 -> $ unset _Val; test -n ${_Val}; echo $? 0 -> $ _Val=some; test -n ${_Val}; echo $? 0 What is this!? How should two different, opposite tests give the same result Is there some bash option which affects that and if so, then what would be the purpose of such nonsense? many thanks, L.