$
#記号
code:bash
$1
$2
$9
${10}
${20}
$*
$@
"$@"
code:bash
foo=$()
code:bash
foo="hogefuga"
${foo}
${#foo}
${foo%pattern}
${foo%%pattern}
${foo#pattern}
${foo##pattern}