notes/BASH Fallback to default variable-buBN0eWU.sh
#!/bin/bash


#set candy to first argument

#default to Twix is none are given

#candy="${@:-Twix}" #for all arguments

candy="${1:-Twix}"
echo "Candy Selected, $candy!"

syntax highlighted by Code2HTML, v. 0.9.1