blob: caac61f0c02e46cc1418c065d11324711cf741df (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#! /bin/bash -e
#
# Debian prerm script for Python 1.5 hierarchical modules
# Written by Gregor Hoffleit <flight@debian.org>
#
NAME=python-xradar3
dpkg --listfiles $NAME |
awk '$0~/\.py$/ {print $0"c\n" $0"o"}' |
xargs rm -f >&2
|