show/hide this revision's text 2 improved code

You could write a script to compile them and then move them around. Something like:

for i in `ls *.pyc`
do
 mv $i $DEST_DIR
done

(which can be shortened to:

for i in *.pyc
do
    mv $i $DEST_DIR
done

or, surprisingly, to

mv *.pyc $DEST_DIR

)

show/hide this revision's text 1

You could write a script to compile them and then move them around. Something like:

for i in `ls *.pyc`
do
 mv $i $DEST_DIR
done