Skip to content

Instantly share code, notes, and snippets.

@stav
Created July 10, 2014 19:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stav/9865f261ce579fd1311b to your computer and use it in GitHub Desktop.
Save stav/9865f261ce579fd1311b to your computer and use it in GitHub Desktop.
rm Python bytecode files (.pyc)
#!/bin/bash
if [ -n "$1" ]; then
TARGET="$1"
else
TARGET="."
fi
command="find $TARGET -name '*.pyc' 2>/dev/null"
eval "$command"
eval "$command |xargs rm"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment