From 631a71f11af90db6e43c560fd552041348b293be Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Tue, 6 Mar 2007 22:08:12 +0000 Subject: * Oops, that last commit had some debug stuff in it. Removed it and added --help and --version command line flags to contrib/pacsearch. --- contrib/pacsearch | 5 ----- 1 file changed, 5 deletions(-) diff --git a/contrib/pacsearch b/contrib/pacsearch index 63a74abd..6eed254d 100755 --- a/contrib/pacsearch +++ b/contrib/pacsearch @@ -50,18 +50,15 @@ if [ -z "$1" -o "${1:0:1}" = "-" ]; then exit 1 fi -echo "debug 1" # Make two temp files and send output of commands to these files querydump=$(mktemp) pacman -Qs $1 > $querydump syncdump=$(mktemp) pacman -Ss $1 > $syncdump -echo "debug 2" # Strip descriptions and 'local/' from -Qs query instpkg=$(mktemp) egrep '^[^ ]' $querydump | sed -e 's@^local/@@' > $instpkg -echo "debug 3" # Add pkgs not in sync db, mark pkgs that are installed cat $instpkg | while read -r pkg; do @@ -73,7 +70,6 @@ cat $instpkg | while read -r pkg; do sed -i "s@^\(.\+/$pkg\)@\***\1@" $syncdump done -echo "debug 4" # Print colorized package list and descriptions to screen echo -e "$(sed -r \ -e "s@current/.*@$CLR1&$BASE@" \ @@ -88,7 +84,6 @@ echo -e "$(sed -r \ < $syncdump )" echo -en "\e[0m" -echo "debug 5" rm $querydump rm $syncdump rm $instpkg -- cgit v1.2.3-24-g4f1b