1
0
mirror of https://github.com/moparisthebest/pacman synced 2024-08-13 17:03:46 -04:00

* Oops, that last commit had some debug stuff in it. Removed it and added

--help and --version command line flags to contrib/pacsearch.
This commit is contained in:
Dan McGee 2007-03-06 22:08:12 +00:00
parent 48181e9a84
commit 631a71f11a

View File

@ -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