config

OpenBSD system configuration
git clone git://jacobedwards.org/config
Log | Files | Refs | README

commit fbd344306f8f94a2ad4360103974fe53a2f4da99
parent 87b7c027350ba6a294297f41e9a1ade49428279d
Author: Jacob R. Edwards <jacobouno@protonmail.com>
Date:   Wed, 25 Nov 2020 10:34:03 -0800

Improve OpenBSD `pq' function

Diffstat:
Mmodules/shell/.config/shell/openbsd | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/shell/.config/shell/openbsd b/modules/shell/.config/shell/openbsd @@ -11,4 +11,4 @@ alias pd="doasroot pkg_delete" alias pi="pkg_info" alias pu="doasroot pkg_add -u" -pq() { pkglocate "${@}*:*" | cut -d: -f1 | uniq ;} +pq() { pkglocate "${@}*" | cut -d: -f1 | uniq ;}