Add new plugin: shortcut for Debian functions not provided in debian

plugin from oh-my-zsh.
This commit is contained in:
Jeff Lance 2018-07-05 11:56:32 +02:00
parent 7ff27ca5bc
commit 5a580a948d

View File

@ -0,0 +1,15 @@
#
# Functions
#
function apt-key_add {
key="$1"
wget -q -O - "$key" | sudo apt-key add -
}
#
# Aliases
#
alias aptka="apt-key_add $1"