2011-07-19 08:08:24 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
2011-08-04 19:49:00 +00:00
|
|
|
set -e
|
|
|
|
|
2022-04-16 08:09:48 +00:00
|
|
|
# Remove Python *.pyc files.
|
2011-07-19 08:08:24 +00:00
|
|
|
#
|
|
|
|
# This removes byte-compiled Python modules to save some space.
|
|
|
|
|
|
|
|
find /usr -name "*.pyc" -print0 | xargs -0r rm -f
|