9 lines
93 B
Plaintext

function Check(){
CheckRes=0
if [[ $1 -ne 0 ]]
then
CheckRes=1
fi
}
export -f Check