bash デフォルト値

#!/bin/bash

foo=${1:-hoge}
echo $foo #$1がなかったらhogeをデフォルト値としてfooに代入する

https://gist.github.com/doi-t/7853853