#!/bin/sh

for item in ${WORKON_HOME}/*; do
    if [ -r "${item}/bin/activate" ]; then
        echo ${item##*/}
    fi
done
