[pacman-contrib] [PATCH 1/2] paccache: Enable nullglob
Fixes FS#48818. Signed-off-by: Johannes Löthberg <johannes@kyriasis.com> --- src/paccache.sh.in | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/paccache.sh.in b/src/paccache.sh.in index e34f684..643bb38 100644 --- a/src/paccache.sh.in +++ b/src/paccache.sh.in @@ -18,6 +18,8 @@ # along with this program. If not, see <http://www.gnu.org/licenses/>. +# Expand to nothing if there are no matches +shopt -s nullglob shopt -s extglob declare -r myname='paccache' -- 2.10.0
Signed-off-by: Johannes Löthberg <johannes@kyriasis.com> --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 15a3769..0b4681a 100644 --- a/README.md +++ b/README.md @@ -36,6 +36,10 @@ Scripts available in this repository: * pacscripts - tries to print out the {pre,post}\_{install,remove,upgrade} scripts of a given package. +* pacsearch - a colorized search combining both -Ss and -Qs output. Installed + packages are easily identified with a `[installed]`, and + local-only packages are also listed. + * rankmirrors - ranks pacman mirrors by their connection and opening speed. * updpkgsums - performs an in-place update of the checksums in a PKGBUILD. -- 2.10.0
participants (1)
-
Johannes Löthberg