private-model / var /lib /dpkg /info /libstdc++6:amd64.prerm
ACCC1380's picture
Upload var/lib/dpkg/info/libstdc++6:amd64.prerm with huggingface_hub
23cbee5 verified
raw
history blame
No virus
402 Bytes
#! /bin/sh
set -e
case "$1" in
remove|upgrade)
files=$(dpkg -L libstdc++6:amd64 | awk -F/ 'BEGIN {OFS="/"} /\.py$/ {$NF=sprintf("__pycache__/%s.*.py[co]", substr($NF,1,length($NF)-3)); print}')
rm -f $files
dirs=$(dpkg -L libstdc++6:amd64 | awk -F/ 'BEGIN {OFS="/"} /\.py$/ {NF--; print}' | sort -u)
find $dirs -mindepth 1 -maxdepth 1 -name __pycache__ -type d -empty | xargs -r rmdir
esac