diff --git a/aliases/apt b/aliases/apt new file mode 100755 index 0000000..8f10add --- /dev/null +++ b/aliases/apt @@ -0,0 +1,15 @@ +#!/bin/zsh + +# detect debianoid systems +# (not checking for apt here, as you can install it on other distros in addition +# to their package manager) +grep -iq 'ID_LIKE=debian' /etc/os-release || \ + grep -iq 'NAME=Ubuntu' /etc/os-release || \ + grep -iq 'NAME=Debian' /etc/os-release || \ + return + +alias xq="apt-cache search" +alias xi="apt-get install" +alias xowner="dpkg -S" +alias xfiles="dpkg -L" +alias sv="systemctl"