diff --git a/makepkglist b/makepkglist new file mode 100644 index 0000000..b8a7278 --- /dev/null +++ b/makepkglist @@ -0,0 +1,18 @@ +#!/bin/sh + +# define location for output +DIR=/home/sintan/Documents/Backup/pkglists + +# make sure that the folder exists +mkdir -p $DIR + +# list and save system packages +command -v pacman &> /dev/null && pacman -Qq > $DIR/pacman + +# list and save pip packages +command -v pip &> /dev/null && pip list | awk '{print $1}' | tail -n +3 > $DIR/pip + +# list and save pipx packages +command -v pipx &> /dev/null && pipx list | grep package | awk '{print $2}' > $DIR/pipx + +