Artifact 422373a2055b1daae7767467b8cf9f817d174260:
- Executable file bin/migrate.sh — part of check-in [6db3f72ded] at 2015-04-13 09:29:21 on branch develop — Remove shell-style script support. (user: necrophcodr@protonmail.ch size: 237) [more...]
#!/bin/bash help_msg=""" $0: Usage: [options] empty """ if [[ -z "$@" ]]; then printf "%s" "$help_msg"; exit 0; fi if [ -n "$1" ]; then case "$1" in *) if [[ -x "${0%.sh}-$1" ]]; then ${0%.sh}-$1 $@ fi ;; esac fi