I have a bash script that takes arguments for variables as the following:
V1=$1; V2=$2; V3=${3:-""};
Can someone help explain the syntax used for V3?
I have a bash script that takes arguments for variables as the following:
V1=$1; V2=$2; V3=${3:-""};
Can someone help explain the syntax used for V3?