in reply to What does q{} mean?
q{} is the operator for a single-quoted string. In this case, it's the empty string: ''.
See perlop's quote and quote-like operators.
eg:
perl -E "say 'match' if q{} eq ''" match [download]