summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorDaniel Friesel <derf@derf.homelinux.org>2009-07-07 11:03:46 +0200
committerDaniel Friesel <derf@derf.homelinux.org>2009-07-07 11:03:46 +0200
commitada1cdfdf960047892bb9632e2c81581991acef6 (patch)
treec601f0e59bdcaff4dd93c009ff39662c9aa8be70 /bin
parentc987638443ed2e58e464bf0574a63639e521a95d (diff)
pkg: Added short actions (pkg a = add etc)
Diffstat (limited to 'bin')
-rwxr-xr-xbin/pkg22
1 files changed, 11 insertions, 11 deletions
diff --git a/bin/pkg b/bin/pkg
index e174861..28b1af5 100755
--- a/bin/pkg
+++ b/bin/pkg
@@ -824,36 +824,36 @@ cd $PKG_DIR || die "Cannot cd $PKG_DIR"
# Note:
# wrap foobar "$1" <- the "" are neccessary here, since $1 is optional (and therefore may be empty)
case $action in
- add|install)
+ a|add|install)
if [[ $action == install ]] {
warn "pkg install is deprecated, use pkg add instead\n"
}
pkg_add $*
;;
- delete|remove)
+ rm|delete|remove)
if [[ $action == delete ]] {
warn "pkg delete is deprecated, use pkg remove instead\n"
}
pkg_remove $*
;;
- info) pkg_info $* ;;
- list) pkg_list $* ;;
- log) pkg_log $* ;;
- push)
+ i|info) pkg_info $* ;;
+ ls|list) pkg_list $* ;;
+ l|log) pkg_log $* ;;
+ p|push)
(( AUTOUPDATE )) && pkg_update
wrap pkg_push "$1" 'Pushing'
;;
- refresh) wrap pkg_refresh "$1" 'Refreshing' ;;
- status) wrap pkg_status "$1" 'Checking package status' ;;
- update) pkg_update $* ;;
- upgrade|pull)
+ r|refresh) wrap pkg_refresh "$1" 'Refreshing' ;;
+ s|status) wrap pkg_status "$1" 'Checking package status' ;;
+ u|update) pkg_update $* ;;
+ f|upgrade|pull)
if [[ $action == upgrade ]] {
warn "pkg updgrade is deprecated, use pkg pull instead\n"
}
(( AUTOUPDATE )) && pkg_update remote
wrap pkg_upgrade "$1" 'Looking for updates'
;;
- eval) eval $* ;;
+ e|eval) eval $* ;;
*) die "wait, what?\npkg: unknown action: '$action'\n" ;;
esac