two_fer.sh (83B)
1 #!/usr/bin/env bash 2 3 main() { 4 echo "One for ${1:-you}, one for me." 5 } 6 7 main "$@"