removepyc.sh 96 B

123
  1. #!/bin/bash
  2. (cd "${1:-.}";
  3. find . -name "*.pyc" | xargs rm -- 2>/dev/null) || echo "ok"