How to pass switch/parameter pair 

Symptom 

confirm="-w 'Go on download it'"

can't be passed alone.

Solution / Conclusion 

confirm="Go on download it"
set -- ${confirm:+-w "$confirm"}
[Tip]

!!

 $ echo $1
 -w

 $ echo $2
 Go on download it