linuxOS_AP05/debian/base-linaro/binary/var/lib/dpkg/info/trace-cmd.prerm
2025-09-26 09:40:02 +08:00

15 lines
255 B
Bash
Executable File

#!/bin/sh
set -e
# Automatically added by dh_python2:
if which pyclean >/dev/null 2>&1; then
pyclean -p trace-cmd
else
dpkg -L trace-cmd | grep \.py$ | while read file
do
rm -f "${file}"[co] >/dev/null
done
fi
# End automatically added section