Ubuntu Migration

Artifact [422373a205]
Login

Artifact 422373a2055b1daae7767467b8cf9f817d174260:


#!/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