Commit ac30006e authored by Vitaly Lipatov's avatar Vitaly Lipatov

add support for other names of commands

parent e6439941
......@@ -45,6 +45,17 @@ verbose=1
epm_cmd=
pkg_files=
pkg_names=
progname="${0##*/}"
case $progname in
epmi)
epm_cmd=install
;;
*)
fatal "Unknown command: $progname"
;;
esac
for opt in "$@" ; do
case $opt in
-h|--help|help)
......
epm
\ No newline at end of file
epm
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment