Bash のテンプレ
bash
#!/usr/bin/env bash
set -euo pipefail
main() {
# ...
}
# Run only when executed directly (not sourced)
if [[ "${BASH_SOURCE[0]}" == "$0" ]]; then
main "$@"
fi
#!/usr/bin/env bash
set -euo pipefail
main() {
# ...
}
# Run only when executed directly (not sourced)
if [[ "${BASH_SOURCE[0]}" == "$0" ]]; then
main "$@"
fi