Compare commits

..

No commits in common. "d60eb959202801f66ba7943c558866dfcc6ef4a3" and "5b5acb0ba31b0f3b24668e0fadac8b9d7fb5c61a" have entirely different histories.

View File

@ -113,20 +113,12 @@ list-ssh-keys() {
done
}
{{- if (or (eq .chezmoi.osRelease.id "debian") (eq .chezmoi.osRelease.id "linuxmint")) }}
# Show version of a Debian package
{{- if eq .chezmoi.osRelease.id "debian" }}
debversion() {
local pkgname="${1:?packagename required}"
dpkg -s $pkgname | grep Version
}
# Show files of a Debian package
deblist() {
local pkgname="${1:?packagenamme required}"
dpkg-query -L $pkgname
}
{{- end }}
PATH=$PATH:$HOME/bin