blob: 8beef2495decc98673ef77e2ba23ba0da301137f (
plain) (
blame)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
 | #! /usr/bin/env dash
# shellcheck disable=SC2086
# shellcheck source=/dev/null
. %SHELL_LIBRARY_PATH
tmp=$(tmp 'pacman -Qq');
output=$(mktmp);
while read -r line; do
    msg2 reading $line;
    pacman_out=$(tmp "pacman -Qi $line");
    description=$(awk -F ":" '/Description/ {print $2}' $pacman_out);
    printf "%s # " $line  >> $output;
    echo $description >> $output;
done < $tmp
cat $output;
if [ -d /tmp/LIB_FILE_TEMP_DIR/ ];then rm -r /tmp/LIB_FILE_TEMP_DIR/; fi
 |