1
0
Fork 0
mirror of https://github.com/SinTan1729/random.git synced 2025-04-11 05:36:04 -05:00

chg: Use uv instead of pipx

This commit is contained in:
Sayantan Santra 2025-03-14 12:33:32 -05:00
parent f4c3512f4d
commit 778acd9c26
Signed by: SinTan1729
GPG key ID: 0538DD402EA50898
2 changed files with 4 additions and 4 deletions

View file

@ -21,6 +21,6 @@ command -v dnf &> /dev/null && dnf list installed > $DIR/dnf
# 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
# list and save uv packages
command -v uv &> /dev/null && uv tool list | grep -vE '^-.*' | awk '{print $1}' > $DIR/uv

View file

@ -23,6 +23,6 @@ command -v dnf &> /dev/null && dnf list installed | awk '{print $1}' | tail -n +
# 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
# list and save uv packages
command -v uv &> /dev/null && uv tool list | grep -vE '^-.*' | awk '{print $1}' > $DIR/uv