2025-02-04 11:36:37 +01:00

10 lines
105 B
Plaintext

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