#! /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