So, I'm grabbing argument number three.
curl_data=$3
How do I know if the user provided this at all?
if [[ -z $curl_data ]]; then
This is in the man
page for Bash, by the way.
-z string
True if the length of string is zero.
So, I'm grabbing argument number three.
curl_data=$3
How do I know if the user provided this at all?
if [[ -z $curl_data ]]; then
This is in the man
page for Bash, by the way.
-z string
True if the length of string is zero.