Skip to content

Instantly share code, notes, and snippets.

@csinchok
Created September 8, 2014 21:56
Show Gist options
  • Select an option

  • Save csinchok/0288a181bd2910e14e0d to your computer and use it in GitHub Desktop.

Select an option

Save csinchok/0288a181bd2910e14e0d to your computer and use it in GitHub Desktop.
Just a cool script
function throwaway {
THROWAWAY_DIR=$(mktemp -d -t virtualenv);
cd $THROWAWAY_DIR;
virtualenv .;
source bin/activate;
trap "rm -r $THROWAWAY_DIR" EXIT
}
export -f throwaway
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment