home *** CD-ROM | disk | FTP | other *** search
/ PC Welt 2006 November (DVD) / PCWELT_11_2006.ISO / casper / filesystem.squashfs / usr / share / doc / python2.4 / sample.prerm < prev    next >
Encoding:
Text File  |  2006-08-25  |  254 b   |  14 lines

  1. #! /bin/sh -e
  2. #
  3. # sample prerm script for Debian python packages.
  4. # Written 1998 by Gregor Hoffleit <flight@debian.org>.
  5. #
  6.  
  7. PACKAGE=`basename $0 .prerm`
  8.  
  9. dpkg --listfiles $PACKAGE |
  10.     awk '$0~/\.py$/ {print $0"c\n" $0"o"}' |
  11.     xargs rm -f >&2
  12.  
  13. #DEBHELPER#
  14.