#!/bin/bash set -e if [ ! -e env/bin/activate ] then python -m venv env fi if [ "$#" -gt 0 ] then bash --rcfile <(cat env/bin/activate) -c -- "$@" else bash --rcfile <(cat env/bin/activate) fi